Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clean up
  • Loading branch information
Marco Gorelli authored and MarcoGorelli committed Sep 3, 2019
commit 52ba53b73c7f831df46c3a38b15ac5eae3afe8b2
1 change: 0 additions & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -6260,7 +6260,6 @@ def explode(self, column: Union[str, Tuple]) -> "DataFrame":
raise ValueError("columns must be unique")

column_with_index = self[column].reset_index()

result = (
self.drop([column], axis=1)
.reset_index()
Expand Down