Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d3b23a commit e559aceCopy full SHA for e559ace
1 file changed
lib/matplotlib/colors.py
@@ -222,7 +222,7 @@ def is_color_like(c):
222
223
def rgb2hex(rgb):
224
'Given an rgb or rgba sequence of 0-1 floats, return the hex string'
225
- return '#%02x%02x%02x' % tuple([np.round(val * 255) for val in rgb[:3]])
+ return '#%02x%02x%02x' % tuple([int(np.round(val * 255)) for val in rgb[:3]])
226
227
hexColorPattern = re.compile("\A#[a-fA-F0-9]{6}\Z")
228
0 commit comments