[buildcore] Fix type annotation error in pybb

This commit is contained in:
Gary Talent 2022-08-18 00:31:29 -05:00
parent c6c18c18d3
commit cef415d34f

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)