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
Refactor according to PEP 585 generics
As PEP 585 was introduced in Python 3.9 we can safely upgrade the code to reflect those changes.
Modify type hinting generics to use standard library collections instead of their typing variations, e.g.: list instead of typing.List.
list
typing.List
The text was updated successfully, but these errors were encountered:
♻️ PEP 585 - Type Hinting Generics In Standard Collections (#157)
429b4d2
7d0adf1
perdy
Successfully merging a pull request may close this issue.
Summary
Refactor according to PEP 585 generics
Motivation
As PEP 585 was introduced in Python 3.9 we can safely upgrade the code to reflect those changes.
Proposed changes
Modify type hinting generics to use standard library collections instead of their typing variations, e.g.:
list
instead oftyping.List
.The text was updated successfully, but these errors were encountered: