File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def _parse_conversion(name, otherargs):
63
63
otherargs = np .asarray (otherargs )
64
64
return _LinearTransform (slope = otherargs [0 ], offset = otherargs [1 ])
65
65
else :
66
- raise ValueError (f '"{ name } " not a possible conversion string' )
66
+ raise ValueError ('"{}" not a possible conversion string' . format ( name ) )
67
67
68
68
69
69
class Secondary_Axis (_AxesBase ):
@@ -178,7 +178,7 @@ def set_location(self, location):
178
178
179
179
# this locator lets the axes move in the parent axes coordinates.
180
180
# so it never needs to know where the parent is explicitly in
181
- # figure co-ordinates.
181
+ # figure co-ordinates.
182
182
# it gets called in `ax.apply_aspect() (of all places)
183
183
self .set_axes_locator (secondary_locator )
184
184
You can’t perform that action at this time.
0 commit comments