Skip to content

Commit

Permalink
Fix more complex positional variables
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom committed Sep 29, 2021
1 parent cc8f73a commit 83604c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seaborn/_core/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ def _scale_coords_single(
# It is clever, but a bit confusing!

scale = scales[axis]
axis_obj = getattr(ax, f"{axis}axis")
axis_obj = getattr(ax, f"{axis[0]}axis")

# TODO this is no longer valid with the way the semantic order overrides
# Perhaps better to have the scale always be the source of the order info
Expand Down

0 comments on commit 83604c6

Please sign in to comment.