Skip to content

Commit 9cd71f1

Browse files
committed
Fixed pre-commit issue
1 parent ca9a487 commit 9cd71f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/indexing/test_iloc.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
Interval,
2222
NaT,
2323
Series,
24+
Timestamp,
2425
array,
2526
concat,
2627
date_range,
2728
interval_range,
2829
isna,
2930
to_datetime,
30-
Timestamp,
3131
)
3232
import pandas._testing as tm
3333
from pandas.api.types import is_scalar
@@ -745,7 +745,7 @@ def test_iloc_mask(self):
745745

746746
# the possibilities
747747
locs = np.arange(4)
748-
nums = 2 ** locs
748+
nums = 2**locs
749749
reps = [bin(num) for num in nums]
750750
df = DataFrame({"locs": locs, "nums": nums}, reps)
751751

0 commit comments

Comments
 (0)