-
Notifications
You must be signed in to change notification settings - Fork 0
Adds dependencies to pyproject toml #3
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
base: main
Are you sure you want to change the base?
Conversation
| @@ -1,2 +1,2 @@ | |||
| __pycache__/ | |||
|
|
|||
| .venv | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From my virtual env. Nobody needs that checked in here.
| <br> | ||
|
|
||
| ``` | ||
| def build_around_tc(building:BuildingId, radius:Integer) -> Integer: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Github's markdown renderer had some kind of strange bug rendering this code bit. Added newlines to hopefully force it to be normal.
| readme = "README.md" | ||
| requires-python = ">=3.6" | ||
| dependencies = [] | ||
| dependencies = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are required to run the /src/main
| @@ -1,16 +1,19 @@ | |||
| import ast | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I sorted all the imports without thinking.
Is it helpful? No. But it's pretty, so I didn't undo it.
| value = node.value.args[0].value | ||
| self.def_const_list.add(name + " " + str(value)) | ||
| except IndexErrors: | ||
| except IndexError: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wee bug, yeah?
Added dependencies.