-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
REF: Read excel parse refactor #58497
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
REF: Read excel parse refactor #58497
Conversation
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.
Thanks for the PR! Looks great - a rename request (I had forgotten the _ when I made the recommendation on the other PR).
pandas/io/excel/_base.py
Outdated
|
||
for col in index_col: | ||
last = data[offset][col] | ||
def parse_sheet( |
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.
Since this class is in the public API, we'll want to mark this internal. Can you rename to _parse_sheet
.
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.
Of course, I've corrected it. Thank you for taking a loot at it. Let me know if there's anything else that can be changed or improved in this PR!
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.
lgtm
Thanks @iangainey! |
This is related to PR 58464 as a precursor to that enhancement
doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.