- Notifications
You must be signed in to change notification settings - Fork673
chore: disallow incomplete type defs#1342
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
chore: disallow incomplete type defs#1342
Uh oh!
There was an error while loading.Please reload this page.
Conversation
codecov-io commentedFeb 27, 2021
Codecov Report
@@ Coverage Diff @@## master #1342 +/- ##==========================================- Coverage 80.07% 80.04% -0.03%========================================== Files 72 72 Lines 3764 3769 +5 ==========================================+ Hits 3014 3017 +3- Misses 750 752 +2
Flags with carried forward coverage won't be shown.Click here to find out more.
Continue to review full report at Codecov.
|
Don't allow a partially annotated function definition. Either none ofthe function is annotated or all of it must be.Update code to ensure no-more partially annotated functions.Update gitlab/cli.py with better type-hints. Changed Tuple[Any, ...]to Tuple[str, ...]
Don't allow a partially annotated function definition. Either none of
the function is annotated or all of it must be.
Update code to ensure no-more partially annotated functions.
Update gitlab/cli.py with better type-hints. Changed Tuple[Any, ...]
to Tuple[str, ...]