Skip to content
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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

mdickinson
Copy link
Member

@mdickinson mdickinson commented Mar 5, 2025

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 (and BaseInstance) traits:

  • fixes inclusion of str in the inferred type for the value of an Instance trait
  • adds an overload for the case allow_none=False, so that type checkers can infer that the value of the trait is not None (and None may not be assigned) in this case. Note: this technically isn't true (since a default of None can still be provided even when allow_none=False), but it's a safe bet that if the user is explicitly stating allow_none=False then the intent is that the trait value is never False
  • adds an overload for the forward reference case where the class is given as a string - we just punt in this case and report Any for the value trait (for both getting and setting).



class Fruit:
info = Str("good for you")
info: str
Copy link
Member Author

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
Copy link
Member Author

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.

@mdickinson mdickinson requested a review from siddhantwahal March 6, 2025 07:50
@mdickinson
Copy link
Member Author

Pinging @siddhantwahal for interest.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant