Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change ./checkin.py into an entrypoint #71

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
black setup.py
  • Loading branch information
lockefox committed Aug 18, 2021
commit d0fa161f99a8bf0897c1345a9ba3961f50051ec3
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