Skip to content

Commit 9377627

Browse files
jmonticoloJulien Monticolo
and
Julien Monticolo
authored
correct misspells, fix #3074 (#3105)
Co-authored-by: Julien Monticolo <[email protected]>
1 parent db22c9d commit 9377627

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

packages/python/plotly/_plotly_utils/colors/__init__.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def validate_colors(colors, colortype="tuple"):
377377

378378
def validate_colors_dict(colors, colortype="tuple"):
379379
"""
380-
Validates dictioanry of color(s)
380+
Validates dictionary of color(s)
381381
"""
382382
# validate each color element in the dictionary
383383
for key in colors:
@@ -491,15 +491,15 @@ def convert_colors_to_same_type(
491491
return (colors_list, scale)
492492
else:
493493
raise exceptions.PlotlyError(
494-
"You must select either rgb or tuple " "for your colortype variable."
494+
"You must select either rgb or tuple for your colortype variable."
495495
)
496496

497497

498498
def convert_dict_colors_to_same_type(colors_dict, colortype="rgb"):
499499
"""
500-
Converts a colors in a dictioanry of colors to the specified color type
500+
Converts a colors in a dictionary of colors to the specified color type
501501
502-
:param (dict) colors_dict: a dictioanry whose values are single colors
502+
:param (dict) colors_dict: a dictionary whose values are single colors
503503
"""
504504
for key in colors_dict:
505505
if "#" in colors_dict[key]:
@@ -519,7 +519,7 @@ def convert_dict_colors_to_same_type(colors_dict, colortype="rgb"):
519519
return colors_dict
520520
else:
521521
raise exceptions.PlotlyError(
522-
"You must select either rgb or tuple " "for your colortype variable."
522+
"You must select either rgb or tuple for your colortype variable."
523523
)
524524

525525

@@ -536,7 +536,7 @@ def validate_scale_values(scale):
536536
"""
537537
if len(scale) < 2:
538538
raise exceptions.PlotlyError(
539-
"You must input a list of scale values " "that has at least two values."
539+
"You must input a list of scale values that has at least two values."
540540
)
541541

542542
if (scale[0] != 0) or (scale[-1] != 1):
@@ -584,7 +584,7 @@ def make_colorscale(colors, scale=None):
584584
# validate minimum colors length of 2
585585
if len(colors) < 2:
586586
raise exceptions.PlotlyError(
587-
"You must input a list of colors that " "has at least two colors."
587+
"You must input a list of colors that has at least two colors."
588588
)
589589

590590
if scale is None:
@@ -594,7 +594,7 @@ def make_colorscale(colors, scale=None):
594594
else:
595595
if len(colors) != len(scale):
596596
raise exceptions.PlotlyError(
597-
"The length of colors and scale " "must be the same."
597+
"The length of colors and scale must be the same."
598598
)
599599

600600
validate_scale_values(scale)

packages/python/plotly/plotly/figure_factory/_gantt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ def create_gantt(
973973
raise exceptions.PlotlyError(
974974
"Error. You have set colors to a dictionary but have not "
975975
"picked an index. An index is required if you are "
976-
"assigning colors to particular values in a dictioanry."
976+
"assigning colors to particular values in a dictionary."
977977
)
978978
fig = gantt(
979979
chart,

packages/python/plotly/plotly/figure_factory/_violin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def create_violin(
475475
of param colors. This means colors must be a list with at least 2
476476
colors in it (Plotly colorscales are accepted since they map to a
477477
list of two rgb colors). Default = False
478-
:param (dict) group_stats: a dictioanry where each key is a unique
478+
:param (dict) group_stats: a dictionary where each key is a unique
479479
value from the group_header column in data. Each value must be a
480480
number and will be used to color the violin plots if a colorscale
481481
is being used.

packages/python/plotly/plotly/tests/test_optional/optional_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def assert_fig_equal(self, d1, d2, msg=None, ignore=["uid"]):
3737
"""
3838
Helper function for assert_dict_equal
3939
40-
By defualt removes uid from d1 and/or d2 if present
40+
By default removes uid from d1 and/or d2 if present
4141
then calls assert_dict_equal.
4242
4343
:param (list|tuple) ignore: sequence of key names as

packages/python/plotly/plotly/tests/test_optional/test_tools/test_figure_factory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,7 @@ def test_gantt_validate_colors(self):
17181718
pattern4 = (
17191719
"Error. You have set colors to a dictionary but have not "
17201720
"picked an index. An index is required if you are "
1721-
"assigning colors to particular values in a dictioanry."
1721+
"assigning colors to particular values in a dictionary."
17221722
)
17231723

17241724
self.assertRaisesRegexp(

0 commit comments

Comments
 (0)