File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments