Skip to content

Commit 4a9d32e

Browse files
committed
style: shorten line to fit into PEP standard
1 parent 0debafa commit 4a9d32e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/reshape/test_tile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ def _test_memview_cut(array_1_writeable, array_2_writeable):
526526
tm.assert_categorical_equal(cut(hundred_elements, array_1),
527527
cut(hundred_elements, array_2))
528528

529-
for (a1_writeable, a2_writeable) in [[True, True], [True, False], [False, False]]:
530-
_test_memview_cut(a1_writeable, a2_writeable)
529+
for (w_1, w_2) in [[True, True], [True, False], [False, False]]:
530+
_test_memview_cut(w_1, w_2)
531531

532532

533533
def curpath():

0 commit comments

Comments
 (0)