Skip to content

Commit d93ac90

Browse files
committed
Cleanup
1 parent 2c05626 commit d93ac90

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/core/frame.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11588,9 +11588,7 @@ def _series_round(ser: Series, decimals: int) -> Series:
1158811588

1158911589
if new_cols is not None and len(new_cols) > 0:
1159011590
return self._constructor(
11591-
concat(new_cols, axis=1),
11592-
index=self.index,
11593-
columns=self.columns,
11591+
concat(new_cols, axis=1), index=self.index, columns=self.columns
1159411592
).__finalize__(self, method="round")
1159511593
else:
1159611594
return self.copy(deep=False)

0 commit comments

Comments
 (0)