Skip to content

Commit 4456b70

Browse files
committed
Cleanup
1 parent 60426a6 commit 4456b70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2993,7 +2993,7 @@ def searchsorted( # type: ignore[override]
29932993
def _append_internal(self, to_append: Series, ignore_index: bool = False) -> Series:
29942994
from pandas.core.reshape.concat import concat
29952995

2996-
return concat([self, to_append], ignore_index=ignore_index) # maybebug
2996+
return concat([self, to_append], ignore_index=ignore_index)
29972997

29982998
def compare(
29992999
self,
@@ -3277,7 +3277,7 @@ def combine_first(self, other) -> Series:
32773277
stacklevel=find_stack_level(),
32783278
)
32793279

3280-
combined = concat([this, other]) # bug
3280+
combined = concat([this, other])
32813281
combined = combined.reindex(new_index)
32823282
return combined.__finalize__(self, method="combine_first")
32833283

0 commit comments

Comments
 (0)