We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca9a487 commit 9cd71f1Copy full SHA for 9cd71f1
pandas/tests/indexing/test_iloc.py
@@ -21,13 +21,13 @@
21
Interval,
22
NaT,
23
Series,
24
+ Timestamp,
25
array,
26
concat,
27
date_range,
28
interval_range,
29
isna,
30
to_datetime,
- Timestamp,
31
)
32
import pandas._testing as tm
33
from pandas.api.types import is_scalar
@@ -745,7 +745,7 @@ def test_iloc_mask(self):
745
746
# the possibilities
747
locs = np.arange(4)
748
- nums = 2 ** locs
+ nums = 2**locs
749
reps = [bin(num) for num in nums]
750
df = DataFrame({"locs": locs, "nums": nums}, reps)
751
0 commit comments