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.
2 parents 9b8336c + 4d2b7f9 commit 606b1beCopy full SHA for 606b1be
examples/colorsys_simpletest.py
@@ -9,5 +9,5 @@
9
print("HLS {} == RGB {}".format(hls, rgb))
10
11
hsv = (0.8, 0.5, 0.5)
12
-rgb = colorsys.hls_to_rgb(hsv[0], hsv[1], hsv[2])
+rgb = colorsys.hsv_to_rgb(hsv[0], hsv[1], hsv[2])
13
print("HSV {} == RGB {}".format(hsv, rgb))
0 commit comments