-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
MAINT: Drop has_index_names input from read_excel #16522
MAINT: Drop has_index_names input from read_excel #16522
Conversation
Codecov Report
@@ Coverage Diff @@
## master #16522 +/- ##
==========================================
- Coverage 90.78% 90.75% -0.04%
==========================================
Files 161 161
Lines 51089 51086 -3
==========================================
- Hits 46380 46361 -19
- Misses 4709 4725 +16
Continue to review full report at Codecov.
|
c8570aa
to
c9069ad
Compare
|
||
# We detect headers to determine if index names exist, so | ||
# that "index" name in the "names" version of the data will | ||
# now be interpreted as rows that include null data. |
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.
did this test change?
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.
Yes, because has_index_names
got dropped (test fails in original form). That's because when we passed in has_index_names
, the value of the parameter would only change to True
if they were detected.
d5cbd6e
to
638c8f4
Compare
638c8f4
to
f882497
Compare
thanks! |
Deprecated since 0.17.0
xref #10967