Replies: 1 comment
-
I'm not sure what you mean. Pyright is a standards-based type checker, and most of its behaviors regarding |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In Python, the
Any
type from thetyping
module is used to indicate that a value can be of any type. This includesNone
. By allowing arguments of typeAny
to be ignored, we can streamline function definitions and reduce unnecessary complexity.Beta Was this translation helpful? Give feedback.
All reactions