Skip to content

Commit bbd7dfe

Browse files
authored
Spacing lines.py
1 parent 36f0796 commit bbd7dfe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ternary/lines.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def gridlines(ax, scale, multiple=None, horizontal_kwargs=None, left_kwargs=None
186186
return ax
187187

188188
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):
190190
"""
191191
Sets tick marks and labels.
192192
@@ -259,7 +259,7 @@ def ticks(ax, scale, ticks=None, locations=None, multiple=1, axis='b',
259259
line(ax, loc1, loc2, color=axes_colors['r'], **kwargs)
260260
x, y = project_point(text_location)
261261
ax.text(x, y, str(tick), horizontalalignment="center",
262-
color=axes_colors['r'],fontsize=fsize)
262+
color=axes_colors['r'], fontsize=fsize)
263263

264264
if 'l' in axis:
265265
for index, i in enumerate(locations):
@@ -277,7 +277,7 @@ def ticks(ax, scale, ticks=None, locations=None, multiple=1, axis='b',
277277
line(ax, loc1, loc2, color=axes_colors['l'], **kwargs)
278278
x, y = project_point(text_location)
279279
ax.text(x, y, str(tick), horizontalalignment="center",
280-
color=axes_colors['l'],fontsize=fsize)
280+
color=axes_colors['l'], fontsize=fsize)
281281

282282
if 'b' in axis:
283283
for index, i in enumerate(locations):
@@ -295,4 +295,4 @@ def ticks(ax, scale, ticks=None, locations=None, multiple=1, axis='b',
295295
line(ax, loc1, loc2, color=axes_colors['b'], **kwargs)
296296
x, y = project_point(text_location)
297297
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

Comments
 (0)