Skip to content

Commit 606b1be

Browse files
Merge pull request #17 from GomiHgy/patch-1
Fix the typo in processing for testing hsv_to_rgb
2 parents 9b8336c + 4d2b7f9 commit 606b1be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/colorsys_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
print("HLS {} == RGB {}".format(hls, rgb))
1010

1111
hsv = (0.8, 0.5, 0.5)
12-
rgb = colorsys.hls_to_rgb(hsv[0], hsv[1], hsv[2])
12+
rgb = colorsys.hsv_to_rgb(hsv[0], hsv[1], hsv[2])
1313
print("HSV {} == RGB {}".format(hsv, rgb))

0 commit comments

Comments
 (0)