Skip to content

Commit 255d385

Browse files
committed
Fix line widths
1 parent 19410ec commit 255d385

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/projections/polar.py

+4-2
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
@@ -48,7 +49,8 @@ def __init__(self, axis=None, use_rmin=True,
4849

4950
def _get_rorigin(self):
5051
# Get lower r limit after being scaled by the radial scale transform
51-
return self._scale_transform.transform((0, self._axis.get_rorigin()))[1]
52+
return self._scale_transform.transform(
53+
(0, self._axis.get_rorigin()))[1]
5254

5355
def transform_non_affine(self, tr):
5456
# docstring inherited

0 commit comments

Comments
 (0)