We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Considering union type is available starting from python 3.10 (docs), adding location based search #28 will limit python version to 3.10+.
The text was updated successfully, but these errors were encountered:
Am I right in thinking that this tweak to use the existing typing.Union import would fix this?
typing.Union
def parse_location_input(location_input: Union[str, tuple, None]) -> Union[str, None]:
Sorry, something went wrong.
Or we could add:
from __future__ import annotations
agree, they should work
Add tox workflow, single test, and fix union usage
04d5c04
Resolves: bellingcat#32
20c5d58
Successfully merging a pull request may close this issue.
Considering union type is available starting from python 3.10 (docs), adding location based search #28 will limit python version to 3.10+.
The text was updated successfully, but these errors were encountered: