From d519807df27034945e7402fc00172ddbb0bc8ad6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 7 May 2024 08:52:49 +0530 Subject: [PATCH] ... --- publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish.py b/publish.py index 6d68bd0c8..af44a8266 100755 --- a/publish.py +++ b/publish.py @@ -504,7 +504,7 @@ def safe_read(path: str) -> str: return '' -def remove_pycache_only_folders(): +def remove_pycache_only_folders() -> None: folders_to_remove = [] for dirpath, folders, files in os.walk('.'): if not files and folders == ['__pycache__']: