8000 BUG: raise on non-hashable Index name, closes #29069 by jbrockmendel · Pull Request #30335 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

BUG: raise on non-hashable Index name, closes #29069 #30335

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

Merged
merged 10 commits into from
Dec 27, 2019
Prev Previous commit
Next Next commit
typo fixup
  • Loading branch information
jbrockmendel committed Dec 24, 2019
commit 76407cf51e90dba7459a3ba9343c49a3f480d49c
2 changes: 1 addition & 1 deletion pandas/core/indexes/interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def __new__(
verify_integrity: bool = True,
):

name = maybe_extract_name(name, data, cls, cls)
name = maybe_extract_name(name, data, cls)

with rewrite_exception("IntervalArray", cls.__name__):
array = IntervalArray(
Expand Down
0