Skip to content

Commit

Permalink
black setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lockefox committed Aug 18, 2021
1 parent 383d390 commit d0fa161
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
__library_name__ = "southwest"
__here__ = path.dirname(__file__)

with open(path.join(__here__,"README.md"), "r", "utf-8") as f:
with open(path.join(__here__, "README.md"), "r", "utf-8") as f:
__readme__ = f.read()

with open(path.join(__here__, __library_name__ , "VERSION"), "r") as f:
with open(path.join(__here__, __library_name__, "VERSION"), "r") as f:
__version__ = f.read().strip()


Expand Down

0 comments on commit d0fa161

Please sign in to comment.