File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
lib/matplotlib/projections Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -88,10 +88,10 @@ class PolarAffine(Affine2DBase):
88
88
that maximum radius rests on the edge of the axes circle.
89
89
"""
90
90
def __init__ (self , scale_transform , limits ):
91
- u """
91
+ """
92
92
*limits* is the view limit of the data. The only part of
93
93
its bounds that is used is ymax (for the radius maximum).
94
- The theta range is always fixed to (0, 2 \u03c0 ).
94
+ The theta range is always fixed to (0, 2pi ).
95
95
"""
96
96
Affine2DBase .__init__ (self )
97
97
self ._scale_transform = scale_transform
@@ -141,10 +141,9 @@ def inverted(self):
141
141
inverted .__doc__ = Transform .inverted .__doc__
142
142
143
143
class ThetaFormatter (Formatter ):
144
- u"""
145
- Used to format the *theta* tick labels. Converts the
146
- native unit of radians into degrees and adds a degree symbol
147
- (\u00b0 ).
144
+ """
145
+ Used to format the *theta* tick labels. Converts the native
146
+ unit of radians into degrees and adds a degree symbol.
148
147
"""
149
148
def __call__ (self , x , pos = None ):
150
149
# \u00b0 : degree symbol
You can’t perform that action at this time.
0 commit comments