Skip to content

Commit

Permalink
Reformatted python code using Black formatter
Browse files Browse the repository at this point in the history
Output from black:

```
reformatted cfbs/utils.py

All done! ✨ 🍰 ✨
1 file reformatted, 25 files left unchanged.
```
  • Loading branch information
web-flow authored Sep 21, 2023
1 parent f6f8cbf commit 875239b
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 875239b

Please sign in to comment.