Skip to content

Commit 99c7898

Browse files
authored
STY: add strict in zip on test_frame_subplots.py (#62857)
1 parent 29193c9 commit 99c7898

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/plotting/frame/test_frame_subplots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def test_subplots(self, kind):
4242
_check_axes_shape(axes, axes_num=3, layout=(3, 1))
4343
assert axes.shape == (3,)
4444

45-
for ax, column in zip(axes, df.columns):
45+
for ax, column in zip(axes, df.columns, strict=True):
4646
_check_legend_labels(ax, labels=[pprint_thing(column)])
4747

4848
for ax in axes[:-2]:

0 commit comments

Comments
 (0)