Skip to content

Commit 5718c2b

Browse files
author
Colin Leroy-Mira
committed
Fix test
1 parent af92097 commit 5718c2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

digital_image_processing/dithering/burkes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(self, input_img, threshold: int):
3939
def get_greyscale(cls, blue: int, green: int, red: int) -> float:
4040
"""
4141
>>> Burkes.get_greyscale(3, 4, 5)
42-
3.753
42+
4.185
4343
"""
4444
return 0.114 * blue + 0.587 * green + 0.299 * red
4545

0 commit comments

Comments
 (0)