@@ -186,7 +186,7 @@ def gridlines(ax, scale, multiple=None, horizontal_kwargs=None, left_kwargs=None
186
186
return ax
187
187
188
188
def ticks (ax , scale , ticks = None , locations = None , multiple = 1 , axis = 'b' ,
189
- offset = 0.01 , clockwise = False , axes_colors = None ,fsize = 10 , ** kwargs ):
189
+ offset = 0.01 , clockwise = False , axes_colors = None , fsize = 10 , ** kwargs ):
190
190
"""
191
191
Sets tick marks and labels.
192
192
@@ -259,7 +259,7 @@ def ticks(ax, scale, ticks=None, locations=None, multiple=1, axis='b',
259
259
line (ax , loc1 , loc2 , color = axes_colors ['r' ], ** kwargs )
260
260
x , y = project_point (text_location )
261
261
ax .text (x , y , str (tick ), horizontalalignment = "center" ,
262
- color = axes_colors ['r' ],fontsize = fsize )
262
+ color = axes_colors ['r' ], fontsize = fsize )
263
263
264
264
if 'l' in axis :
265
265
for index , i in enumerate (locations ):
@@ -277,7 +277,7 @@ def ticks(ax, scale, ticks=None, locations=None, multiple=1, axis='b',
277
277
line (ax , loc1 , loc2 , color = axes_colors ['l' ], ** kwargs )
278
278
x , y = project_point (text_location )
279
279
ax .text (x , y , str (tick ), horizontalalignment = "center" ,
280
- color = axes_colors ['l' ],fontsize = fsize )
280
+ color = axes_colors ['l' ], fontsize = fsize )
281
281
282
282
if 'b' in axis :
283
283
for index , i in enumerate (locations ):
@@ -295,4 +295,4 @@ def ticks(ax, scale, ticks=None, locations=None, multiple=1, axis='b',
295
295
line (ax , loc1 , loc2 , color = axes_colors ['b' ], ** kwargs )
296
296
x , y = project_point (text_location )
297
297
ax .text (x , y , str (tick ), horizontalalignment = "center" ,
298
- color = axes_colors ['b' ],fontsize = fsize )
298
+ color = axes_colors ['b' ], fontsize = fsize )
0 commit comments