Skip to content

Commit 5b0e557

Browse files
committed
Ignore pre-commit check
1 parent 8d4c506 commit 5b0e557

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/plotting/test_boxplot_method.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,8 @@ def test_boxplot_group_no_xlabel_ylabel(self, vert, request):
408408
for subplot in ax:
409409
target_label = (
410410
subplot.get_xlabel()
411-
if vert == {"vert": True} or vert == {"orientation": "vertical"}
411+
if vert == {"vert": True} # noqa: PLR1714
412+
or vert == {"orientation": "vertical"}
412413
else subplot.get_ylabel()
413414
)
414415
assert target_label == pprint_thing(["group"])

0 commit comments

Comments
 (0)