Skip to content

Commit 5710ff5

Browse files
committed
remove unused name variable
1 parent 3097224 commit 5710ff5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pandas/core/ops.py

-1
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,6 @@ def wrapper(self, other, axis=None):
809809

810810
elif isinstance(other, ABCSeries):
811811
# By this point we know that self._indexed_same(other)
812-
name = com._maybe_match_name(self, other)
813812
res_values = na_op(self.values, other.values)
814813
return self._constructor(res_values, index=self.index,
815814
name=res_name)

0 commit comments

Comments
 (0)