Skip to content

Commit f35bd1d

Browse files
committed
fix black
1 parent c70f68b commit f35bd1d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/core/frame.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -10390,8 +10390,10 @@ def _series_round(ser: Series, decimals: int) -> Series:
1039010390
# Argument 2 to "_series_round" has incompatible type
1039110391
# "Union[int, integer[Any]]"; expected "int"
1039210392
return self._constructor(
10393-
self._mgr.round(decimals=decimals, # type: ignore[arg-type]
10394-
using_cow=using_copy_on_write()),
10393+
self._mgr.round(
10394+
decimals=decimals, # type: ignore[arg-type]
10395+
using_cow=using_copy_on_write(),
10396+
),
1039510397
).__finalize__(self, method="round")
1039610398
else:
1039710399
raise TypeError("decimals must be an integer, a dict-like or a Series")

0 commit comments

Comments
 (0)