We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9367b1b commit 3e67655Copy full SHA for 3e67655
pandas/tests/series/test_unary.py
@@ -31,7 +31,7 @@ def test_all_numeric_unary_operators(
31
dtype = any_nullable_numeric_dtype
32
ser = Series(source, dtype=dtype)
33
neg_result, pos_result, abs_result = -ser, +ser, abs(ser)
34
- if dtype.startswith('U'):
+ if dtype.startswith("U"):
35
neg_target = -Series(source, dtype=dtype)
36
else:
37
neg_target = Series(neg_target, dtype=dtype)
0 commit comments