-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
[Core] Chore: fixed mypy issues for the function decorators #1075
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #1075 +/- ##
===========================================
+ Coverage 30.56% 40.90% +10.34%
===========================================
Files 30 30
Lines 4028 4034 +6
Branches 911 962 +51
===========================================
+ Hits 1231 1650 +419
+ Misses 2723 2256 -467
- Partials 74 128 +54
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@davorrunje do you think we can perhaps wait for #974 to merge as that involves changes to function utils. |
@ekzhu of course, I'll merge with it and fix conflicts. |
Too many conflicts, I'll just redo it. |
* Fix indentation in documentation * newline * version
Why are these changes needed?
Although the project is not checked by mypy, all mypy issues related to function decorators with a rather strict configuration are fixed.
Incorrect typing information causes problems for other developers using mypy to type-check their code. This is not limited to framework developers but to application developers as well.
Related issue number
Checks