Skip to content

Commit

Permalink
Merge pull request #160 from cfengine/formatting-action
Browse files Browse the repository at this point in the history
Reformatted python code using Black formatter
  • Loading branch information
olehermanse committed Sep 21, 2023
2 parents f6f8cbf + 875239b commit 55b7941
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cfbs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 55b7941

Please sign in to comment.