-
Notifications
You must be signed in to change notification settings - Fork 10
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
Support TypedDict field as Dict[str, Any] #237
base: main
Are you sure you want to change the base?
Conversation
ee3a850
to
267e659
Compare
Codecov Report
@@ Coverage Diff @@
## main #237 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 6 6
Lines 472 499 +27
Branches 90 98 +8
=========================================
+ Hits 472 499 +27
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
f6f7a7a
to
62f510a
Compare
Moved to |
Look like 'inspect_typing' has a bug 😞 |
75750d5
to
7965492
Compare
It will require #238 to fix the coverage issue. |
94308c3
to
82d0984
Compare
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.
I'd think it would be nice to support the hints provided by a TypedDict
, but this seems a relevant step in that direction and useful on its own. Thanks.
There are a few tweaks I think I'd like. If they explode in your face and make a mess, let me know and we can move forward as is knowing that I may make an attempt at the changes myself after this.
de8324f
to
5ce23ac
Compare
I addressed your comments! Thanks for the review |
5ce23ac
to
158f528
Compare
158f528
to
59519a1
Compare
Title says it all. Nothing to fancy, just a simple mapping of
TypedDict
->Dict[str, Any]