Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Tests/test_format_hsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ def int_to_float(i: int) -> float:
return i / 255


def str_to_float(i: str) -> float:
return ord(i) / 255


def tuple_to_ints(tp: tuple[float, float, float]) -> tuple[int, int, int]:
x, y, z = tp
return int(x * 255.0), int(y * 255.0), int(z * 255.0)
Expand Down
1 change: 0 additions & 1 deletion Tests/test_image_paste.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@


class TestImagingPaste:
masks = {}
size = 128

def assert_9points_image(
Expand Down