From cef415d34f0a2b70e3d1e318b77bdae8c5f488f3 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 18 Aug 2022 00:31:29 -0500 Subject: [PATCH] [buildcore] Fix type annotation error in pybb --- deps/buildcore/scripts/pybb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/buildcore/scripts/pybb.py b/deps/buildcore/scripts/pybb.py index 43d6a0a9..d5dfc7d0 100755 --- a/deps/buildcore/scripts/pybb.py +++ b/deps/buildcore/scripts/pybb.py @@ -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)