Skip to content

Commit ea11867

Browse files
author
Giacomo Ferroni
committed
[gh15077] Bugfix
1 parent 0fe491d commit ea11867

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pandas/core/frame.py

-3
Original file line numberDiff line numberDiff line change
@@ -3595,9 +3595,6 @@ def _combine_match_columns(self, other, func, level=None, fill_value=None):
35953595
return self._constructor(new_data)
35963596

35973597
def _combine_const(self, other, func, raise_on_error=True):
3598-
if self.empty:
3599-
return self
3600-
36013598
new_data = self._data.eval(func=func, other=other,
36023599
raise_on_error=raise_on_error)
36033600
return self._constructor(new_data)

0 commit comments

Comments
 (0)