Skip to content

Commit 3e67655

Browse files
committed
Fix pre-commit
1 parent 9367b1b commit 3e67655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/series/test_unary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_all_numeric_unary_operators(
3131
dtype = any_nullable_numeric_dtype
3232
ser = Series(source, dtype=dtype)
3333
neg_result, pos_result, abs_result = -ser, +ser, abs(ser)
34-
if dtype.startswith('U'):
34+
if dtype.startswith("U"):
3535
neg_target = -Series(source, dtype=dtype)
3636
else:
3737
neg_target = Series(neg_target, dtype=dtype)

0 commit comments

Comments
 (0)