diff --git a/cfbs/utils.py b/cfbs/utils.py index 9acbf819..63a6f51d 100644 --- a/cfbs/utils.py +++ b/cfbs/utils.py @@ -61,8 +61,8 @@ def rm(path: str, missing_ok=False): return False if os.path.isdir(path): rmtree(path) - else: # Assume path is a file - os.remove(path) # Will raise exception if missing + else: # Assume path is a file + os.remove(path) # Will raise exception if missing return True