-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
TYP: io.pytables annotations #29861
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
TYP: io.pytables annotations #29861
Conversation
updated with a few more annotations broken off from other branches |
…n-pytables-types
…n-pytables-types
…n-pytables-types
@jbrockmendel can you resolve conflicts |
…n-pytables-types
rebased+green |
self, parent: HDFStore, group: "Node", encoding=None, errors="strict", **kwargs | ||
): | ||
assert isinstance(parent, HDFStore), type(parent) | ||
assert _table_mod is not None # needed for mypy |
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.
Does this not have any impact on runtime? The global state management here is a little nuanced so just want to double check that it is valid to add to the constructor here, as on first glance it may not be set until methods are called by design
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.
It does not, we wouldn't get here if _table_mod were not initialized
thanks |
No description provided.