-
-
Notifications
You must be signed in to change notification settings - Fork 103
Adding State.from_.any() #497
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
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #497 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 23 23
Lines 1566 1593 +27
Branches 249 253 +4
=========================================
+ Hits 1566 1593 +27
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
|
|
||
| def add_from_attributes(cls, attrs): # noqa: C901 | ||
| for key, value in sorted(attrs.items(), key=lambda pair: pair[0]): | ||
| for key, value in attrs.items(): |
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.
The library is pre-python3.7 where the dictionary order was not guaranteed. This order hack is not required since 3.7.
…implifyed unbounded callbacks setup
a49683e to
5828cbd
Compare
|



Relates to: #494