Skip to content

Commit d31a765

Browse files
author
Marco Gorelli
committed
Remove comment with issue number
1 parent 986fbba commit d31a765

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6240,10 +6240,10 @@ def explode(self, column: Union[str, Tuple]) -> "DataFrame":
62406240
result = self[column].explode()
62416241
return (
62426242
self.drop([column], axis=1)
6243-
.reset_index(drop=True) # GH 28005
6243+
.reset_index(drop=True)
62446244
.join(self[column].reset_index(drop=True).explode())
62456245
.reindex(columns=self.columns, copy=False)
6246-
.set_index(result.index) # GH 28005
6246+
.set_index(result.index)
62476247
)
62486248

62496249
def unstack(self, level=-1, fill_value=None):

0 commit comments

Comments
 (0)