From cbba2c24bfa330e79cc12c133ab35a034ac3f9dd Mon Sep 17 00:00:00 2001 From: Hugo Date: Sun, 21 Oct 2018 17:05:14 +0300 Subject: [PATCH] Remove unused helper method --- Tests/test_format_hsv.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tests/test_format_hsv.py b/Tests/test_format_hsv.py index d7820400e..8728c484b 100644 --- a/Tests/test_format_hsv.py +++ b/Tests/test_format_hsv.py @@ -13,12 +13,8 @@ class TestFormatHSV(PillowTestCase): return float(i)/255.0 def str_to_float(self, i): - return float(ord(i))/255.0 - def to_int(self, f): - return int(f*255.0) - def tuple_to_ints(self, tp): x, y, z = tp return (int(x*255.0), int(y*255.0), int(z*255.0))