-
Notifications
You must be signed in to change notification settings - Fork 27
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
Updating type hints #466
Updating type hints #466
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #466 +/- ##
========================================
Coverage 89.22% 89.23%
========================================
Files 102 102
Lines 7201 7206 +5
========================================
+ Hits 6425 6430 +5
Misses 776 776
Continue to review full report in Codecov by Sentry.
|
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.
thanks!
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.
great 👍
Reopening to avoid unwanted commits
Context: The use of
Optional
andUnion
should be replaced with|
according to PEP standards.Description of the Change:
Optional
->| None
,Union
->|
,Tuple
->tuple
, etc