Skip to content

Commit

Permalink
FIX: Fix last linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrover1 committed Nov 6, 2023
1 parent 4b40c68 commit 11c8198
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions cmweather/_cm.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@


_NWS_CC_data = {
"blue": [
'blue': [
(0.00000000, 0.54901961, 0.54901961),
(0.42857143, 0.54901961, 0.54901961),
(0.43809524, 0.56209150, 0.56209150),
Expand Down Expand Up @@ -211,9 +211,9 @@
(0.97142857, 0.74117647, 0.74117647),
(0.98095238, 0.69019608, 0.69019608),
(0.99047619, 0.63921569, 0.63921569),
(1.00000000, 0.58823529, 0.58823529)
(1.00000000, 0.58823529, 0.58823529),
],
"green": [
'green': [
(0.00000000, 0.05882353, 0.05882353),
(0.42857143, 0.05882353, 0.05882353),
(0.43809524, 0.05751634, 0.05751634),
Expand Down Expand Up @@ -275,9 +275,9 @@
(0.97142857, 0.50980392, 0.50980392),
(0.98095238, 0.41176471, 0.41176471),
(0.99047619, 0.31372549, 0.31372549),
(1.00000000, 0.21568627, 0.21568627)
(1.00000000, 0.21568627, 0.21568627),
],
"red": [
'red': [
(0.00000000, 0.05882353, 0.05882353),
(0.42857143, 0.05882353, 0.05882353),
(0.43809524, 0.05751634, 0.05751634),
Expand Down Expand Up @@ -339,8 +339,8 @@
(0.97142857, 0.85882353, 0.85882353),
(0.98095238, 0.78823529, 0.78823529),
(0.99047619, 0.71764706, 0.71764706),
(1.00000000, 0.64705882, 0.64705882)
]
(1.00000000, 0.64705882, 0.64705882),
],
}

# Colors maps from Patrick Marsh (http://www.pmarshwx.com/)
Expand Down Expand Up @@ -2076,7 +2076,7 @@
'NWSRef': _NWSRef_data,
'NWSVel': _NWSVel_data,
'NWS_SPW': _NWS_SPW_data,
'NWS_CC' : _NWS_CC_data,
'NWS_CC': _NWS_CC_data,
'RefDiff': _RefDiff_data,
'Carbone11': _Carbone11_data,
'Carbone17': _Carbone17_data,
Expand Down
2 changes: 1 addition & 1 deletion cmweather/_cm_colorblind.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def yuv_rainbow_24(nc):

# Plasmidis colormap for radar correlation coefficient

plasmidis_rgb_vals = np.genfromtxt(os.path.join(data_dir, "plasmidis-rgb.txt"))
plasmidis_rgb_vals = np.genfromtxt(os.path.join(data_dir, 'plasmidis-rgb.txt'))


# HomeyerRainbow developed by Cameron Homeyer with assistance from Bobby Jackson
Expand Down

0 comments on commit 11c8198

Please sign in to comment.