Skip to content

Commit d775dad

Browse files
committed
Fix line widths
1 parent c8f2017 commit d775dad

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/projections/polar.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ class PolarTransform(mtransforms.Transform):
2020
The base polar transform.
2121
2222
This transform maps polar coordinates ``(theta, r)`` into Cartesian
23-
coordinates ``(x, y) = (r * cos(theta), r * sin(theta))`` (but does not fully transform into Axes coordinates or
23+
coordinates ``(x, y) = (r * cos(theta), r * sin(theta))``
24+
(but does not fully transform into Axes coordinates or
2425
handle positioning in screen space).
2526
2627
This transformation is designed to be applied to data after any scaling
@@ -59,7 +60,8 @@ def __init__(self, axis=None, use_rmin=True,
5960

6061
def _get_rorigin(self):
6162
# Get lower r limit after being scaled by the radial scale transform
62-
return self._scale_transform.transform((0, self._axis.get_rorigin()))[1]
63+
return self._scale_transform.transform(
64+
(0, self._axis.get_rorigin()))[1]
6365

6466
def transform_non_affine(self, tr):
6567
# docstring inherited

0 commit comments

Comments
 (0)