-
Notifications
You must be signed in to change notification settings - Fork 3
typehints #80
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
typehints #80
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## v2.x #80 +/- ##
=======================================
Coverage 96.77% 96.77%
=======================================
Files 2 2
Lines 341 341
Branches 17 17
=======================================
Hits 330 330
Misses 6 6
Partials 5 5 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| @@ -68,7 +68,7 @@ def __len__(self): | |||
| def __iter__(self): | |||
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.
Maybe you could put a type hint here too?
|
@BadPrograms L2671, Otherwise it all looks good to me 👍 |
| yield from self.lineagetrees.items() | ||
|
|
||
| def __getitem__(self, key): | ||
| def __getitem__(self, key) -> lineageTree: |
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.
Please type hing on the arguments too
No description provided.