Skip to content

Commit 0e0c005

Browse files
committed
PEP8
1 parent 7fd7b7b commit 0e0c005

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2220,7 +2220,8 @@ def handle_single_axis(scale, autoscaleon, shared_axes, interval,
22202220
minpos = getattr(bb, minpos)
22212221
transform = axis.get_transform()
22222222
inverse_trans = transform.inverted()
2223-
x0, x1 = axis._scale.limit_range_for_scale(x0, x1, minpos)
2223+
x0, x1 = axis._scale.limit_range_for_scale(
2224+
x0, x1, minpos)
22242225
x0t, x1t = transform.transform([x0, x1])
22252226
delta = (x1t - x0t) * margin
22262227
if do_lower_margin:

0 commit comments

Comments
 (0)