Skip to content

Commit

Permalink
Ignore pre-commit check
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Dec 17, 2024
1 parent 8d4c506 commit 5b0e557
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandas/tests/plotting/test_boxplot_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,8 @@ def test_boxplot_group_no_xlabel_ylabel(self, vert, request):
for subplot in ax:
target_label = (
subplot.get_xlabel()
if vert == {"vert": True} or vert == {"orientation": "vertical"}
if vert == {"vert": True} # noqa: PLR1714
or vert == {"orientation": "vertical"}
else subplot.get_ylabel()
)
assert target_label == pprint_thing(["group"])
Expand Down

0 comments on commit 5b0e557

Please sign in to comment.