hsv2rgb remove #
This commit is contained in:
parent
2cf4db2800
commit
35ce391edb
1 changed files with 1 additions and 1 deletions
|
@ -9,5 +9,5 @@ s /= 100
|
|||
v /= 100
|
||||
|
||||
r, g, b = colorsys.hsv_to_rgb(h, s, v)
|
||||
print("#{:02x}{:02x}{:02x}".format(round(255*r), round(255*g), round(255*b)))
|
||||
print("{:02x}{:02x}{:02x}".format(round(255*r), round(255*g), round(255*b)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue