Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 43f3f9a

Browse files
Andreas SchmitzAndreas Schmitz
Andreas Schmitz
authored and
Andreas Schmitz
committed
[tools.py] Gannt Chart: Typo fixes
1 parent 61df27d commit 43f3f9a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

plotly/tools.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1761,7 +1761,7 @@ def _gantt(chart, colors, title, bar_width, showgrid_x, showgrid_y,
17611761
# name is not already in the list
17621762
if not group_tasks or tn not in task_names:
17631763
task_names.append(tn)
1764-
# Gurantees that for grouped tasks the tasks that are inserted first
1764+
# Guarantees that for grouped tasks the tasks that are inserted first
17651765
# are shown at the top
17661766
if group_tasks:
17671767
task_names.reverse()
@@ -1903,8 +1903,8 @@ def _gantt_colorscale(chart, colors, title, index_col, show_colorbar,
19031903
# name is not already in the list
19041904
if not group_tasks or tn not in task_names:
19051905
task_names.append(tn)
1906-
# Gurantees that for grouped tasks the tasks that are inserted first
1907-
# are shown at the top
1906+
# Guarantees that for grouped tasks the tasks that are inserted
1907+
# first are shown at the top
19081908
if group_tasks:
19091909
task_names.reverse()
19101910

@@ -2002,8 +2002,8 @@ def _gantt_colorscale(chart, colors, title, index_col, show_colorbar,
20022002
# name is not already in the list
20032003
if not group_tasks or tn not in task_names:
20042004
task_names.append(tn)
2005-
# Gurantees that for grouped tasks the tasks that are inserted first
2006-
# are shown at the top
2005+
# Guarantees that for grouped tasks the tasks that are inserted
2006+
# first are shown at the top
20072007
if group_tasks:
20082008
task_names.reverse()
20092009

@@ -2161,7 +2161,7 @@ def _gantt_dict(chart, colors, title, index_col, show_colorbar, bar_width,
21612161
# name is not already in the list
21622162
if not group_tasks or tn not in task_names:
21632163
task_names.append(tn)
2164-
# Gurantees that for grouped tasks the tasks that are inserted first
2164+
# Guarantees that for grouped tasks the tasks that are inserted first
21652165
# are shown at the top
21662166
if group_tasks:
21672167
task_names.reverse()

0 commit comments

Comments
 (0)