-
Notifications
You must be signed in to change notification settings - Fork 85
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
Make Instance type hints more useful #1840
base: main
Are you sure you want to change the base?
Conversation
|
||
|
||
class Fruit: | ||
info = Str("good for you") | ||
info: str |
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.
Drive-by change: it looks as though Fruit
was trying to pretend to be a HasTraits
class but without actually inheriting from HasTraits
, so the __init__
implementation didn't make a lot of sense. I've changed it to be a plain old Python class.
... | ||
class Instance(BaseInstance[_S]): | ||
|
||
@overload |
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 couldn't find a way not to have to repeat these overloads - simply doing class Instance(BaseInstance): ...
led to anything being accepted for the trait values. Hints welcome.
Pinging @siddhantwahal for interest. |
Note: #1838 should be merged first - we can't trust the type hint tests until it is.Done.Closes #1839
Closes #1764
Closes #1673
This PR provides a better type-hinting experience for
Instance
(andBaseInstance
) traits:str
in the inferred type for the value of anInstance
traitallow_none=False
, so that type checkers can infer that the value of the trait is notNone
(andNone
may not be assigned) in this case. Note: this technically isn't true (since a default ofNone
can still be provided even whenallow_none=False
), but it's a safe bet that if the user is explicitly statingallow_none=False
then the intent is that the trait value is neverFalse
Any
for the value trait (for both getting and setting).