-
Notifications
You must be signed in to change notification settings - Fork 133
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
fix: remove type annotations from _struct.py #733
Conversation
Removed unused imports to satisfy linter.
setup.py
Outdated
@@ -46,7 +46,7 @@ def readme(): | |||
|
|||
|
|||
extras = dict( | |||
geography=["GeoAlchemy2", "shapely"], | |||
geography=["GeoAlchemy2==0.12.5", "shapely"], |
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.
It is not clear why we included a specific version of GeoAlchemy2
in this PR.
Ari is not supporting this task, so I am unable to ask about it.
I am gonna remove it and ensure that tests pass without it.
If tests pass, I recommend we merge.
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.
LGTM
Removes type annotations from _struct.py
Make sure to open an issue as a bug/issue before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
Ensure the tests and linter pass
Code coverage does not decrease (if any source code was changed)
Appropriate docs were updated (if necessary)
Fixes #545 🦕