-
Notifications
You must be signed in to change notification settings - Fork 19
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
Fix handling of typing.Any #29
Conversation
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.
Looks like there are several formatting changes that are unnecessary? Can we separate those out?
The actual change LGTM
Yeah, I messed up something with the formatting, but I'll fix it later today. |
@erikseulean if you allow another maintainer to push (checkbox on right) can help you out with this. |
It's checked. |
There's also a typo in the commit message that I'll have to fix |
Hmm, it rejects me to push commits on top of it, maybe then I don't have maintainer rights here. |
Signed-off-by: Erik-Cristian Seulean <[email protected]>
So far Any was not taken in consideration and it was failing to handle it correctly. If the base_type is Any, stop the recursive check and return as if everything is fine. Signed-off-by: Erik-Cristian Seulean <[email protected]>
I moved the formatting on a different commit. |
* Black format Signed-off-by: Erik-Cristian Seulean <[email protected]> * Fix handling of typing.Any So far Any was not taken in consideration and it was failing to handle it correctly. If the base_type is Any, stop the recursive check and return as if everything is fine. Signed-off-by: Erik-Cristian Seulean <[email protected]> Signed-off-by: Wilfred Wong <[email protected]>
* Black format Signed-off-by: Erik-Cristian Seulean <[email protected]> * Fix handling of typing.Any So far Any was not taken in consideration and it was failing to handle it correctly. If the base_type is Any, stop the recursive check and return as if everything is fine. Signed-off-by: Erik-Cristian Seulean <[email protected]>
So far Any was not taken in consideration and it was failing
to handle it correctly. If the base_type is Any, stop the
recursive check and return as if everything is fine.
Signed-off-by: Erik-Cristian Seulean [email protected]
*Issue number of the reported bug or feature request: #27