You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why does read_excel take a kind parameter at all? It gets passed to the ExcelFile constructor, set on the object and then (as far as I can tell) never gets used for anything.
This should either be removed from the signature (which doesn't affect anything, because it will be accepted into kwds anyways) or added into the docs and then actually used for something.
if we remove it, just need to add a:
# Remove this branch in 0.14if'kind'inkwargs:
warnings.warn("Kind is deprecated and will be removed in a future version of pandas")
kwargs.pop('kind')
Was not previously being used for anything anyways.
The text was updated successfully, but these errors were encountered:
closes #4563
Why does read_excel take a
kind
parameter at all? It gets passed to theExcelFile
constructor, set on the object and then (as far as I can tell) never gets used for anything.This should either be removed from the signature (which doesn't affect anything, because it will be accepted into kwds anyways) or added into the docs and then actually used for something.
if we remove it, just need to add a:
Was not previously being used for anything anyways.
The text was updated successfully, but these errors were encountered: