-
Notifications
You must be signed in to change notification settings - Fork 914
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
Add Avro Reader options classes to pylibcudf #17599
Conversation
skip_rows: int = 0, | ||
num_rows: int = -1, | ||
) -> TableWithMetadata: ... | ||
__all__ = ["AvroReaderOptions", "AvroReaderOptionsBuilder", "read_avro"] |
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 don't see __all__
's in other type stub files. Should it be included?
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.
IMO yes, ideally the stubs should also have __all__
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.
Ok, will follow up to add __all__
/merge |
Description
Apart of #17565
Checklist