@@ -485,17 +485,17 @@ def test_loc_and_at_with_categorical_index(self):
485485 [1.5 , 2.5 , 3.5 ],
486486 [- 1.5 , - 2.5 , - 3.5 ],
487487 # numpy int/uint
488- * [ np .array ([1 , 2 , 3 ], dtype = dtype ) for dtype in tm .ALL_INT_DTYPES ] ,
488+ * ( np .array ([1 , 2 , 3 ], dtype = dtype ) for dtype in tm .ALL_INT_DTYPES ) ,
489489 # numpy floats
490- * [ np .array ([1.5 , 2.5 , 3.5 ], dtype = dtyp ) for dtyp in tm .FLOAT_DTYPES ] ,
490+ * ( np .array ([1.5 , 2.5 , 3.5 ], dtype = dtyp ) for dtyp in tm .FLOAT_DTYPES ) ,
491491 # numpy object
492492 np .array ([1 , "b" , 3.5 ], dtype = object ),
493493 # pandas scalars
494494 [Interval (1 , 4 ), Interval (4 , 6 ), Interval (6 , 9 )],
495495 [Timestamp (2019 , 1 , 1 ), Timestamp (2019 , 2 , 1 ), Timestamp (2019 , 3 , 1 )],
496496 [Timedelta (1 , "d" ), Timedelta (2 , "d" ), Timedelta (3 , "D" )],
497497 # pandas Integer arrays
498- * [ pd .array ([1 , 2 , 3 ], dtype = dtype ) for dtype in tm .ALL_EA_INT_DTYPES ] ,
498+ * ( pd .array ([1 , 2 , 3 ], dtype = dtype ) for dtype in tm .ALL_EA_INT_DTYPES ) ,
499499 # other pandas arrays
500500 pd .IntervalIndex .from_breaks ([1 , 4 , 6 , 9 ]).array ,
501501 pd .date_range ("2019-01-01" , periods = 3 ).array ,
0 commit comments