@@ -377,7 +377,7 @@ def validate_colors(colors, colortype="tuple"):
377
377
378
378
def validate_colors_dict (colors , colortype = "tuple" ):
379
379
"""
380
- Validates dictioanry of color(s)
380
+ Validates dictionary of color(s)
381
381
"""
382
382
# validate each color element in the dictionary
383
383
for key in colors :
@@ -491,15 +491,15 @@ def convert_colors_to_same_type(
491
491
return (colors_list , scale )
492
492
else :
493
493
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."
495
495
)
496
496
497
497
498
498
def convert_dict_colors_to_same_type (colors_dict , colortype = "rgb" ):
499
499
"""
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
501
501
502
- :param (dict) colors_dict: a dictioanry whose values are single colors
502
+ :param (dict) colors_dict: a dictionary whose values are single colors
503
503
"""
504
504
for key in colors_dict :
505
505
if "#" in colors_dict [key ]:
@@ -519,7 +519,7 @@ def convert_dict_colors_to_same_type(colors_dict, colortype="rgb"):
519
519
return colors_dict
520
520
else :
521
521
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."
523
523
)
524
524
525
525
@@ -536,7 +536,7 @@ def validate_scale_values(scale):
536
536
"""
537
537
if len (scale ) < 2 :
538
538
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."
540
540
)
541
541
542
542
if (scale [0 ] != 0 ) or (scale [- 1 ] != 1 ):
@@ -584,7 +584,7 @@ def make_colorscale(colors, scale=None):
584
584
# validate minimum colors length of 2
585
585
if len (colors ) < 2 :
586
586
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."
588
588
)
589
589
590
590
if scale is None :
@@ -594,7 +594,7 @@ def make_colorscale(colors, scale=None):
594
594
else :
595
595
if len (colors ) != len (scale ):
596
596
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."
598
598
)
599
599
600
600
validate_scale_values (scale )
0 commit comments