[buildcore] Fix type annotation error in pybb

This commit is contained in:
2022-08-18 00:31:29 -05:00
parent 46351cbaaf
commit d33e5ce27e
+1 -1
View File
@@ -31,7 +31,7 @@ def cat(paths: List[str]) -> int:
return 0
def mkdir(path: str) -> int:
def mkdir(path: str):
if not os.path.exists(path):
os.mkdir(path)