Skip to content

Commit ebc5794

Browse files
authored
Merge pull request #7744 from radarhere/unused
2 parents c194d6e + 4ea1ad0 commit ebc5794

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

Tests/test_format_hsv.py

-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ def int_to_float(i: int) -> float:
1313
return i / 255
1414

1515

16-
def str_to_float(i: str) -> float:
17-
return ord(i) / 255
18-
19-
2016
def tuple_to_ints(tp: tuple[float, float, float]) -> tuple[int, int, int]:
2117
x, y, z = tp
2218
return int(x * 255.0), int(y * 255.0), int(z * 255.0)

Tests/test_image_paste.py

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99

1010
class TestImagingPaste:
11-
masks = {}
1211
size = 128
1312

1413
def assert_9points_image(

0 commit comments

Comments
 (0)