From ff57527274d1430a881aa575ecbedb3f4f663a6a Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Sat, 18 Feb 2023 11:16:33 -0600 Subject: [PATCH] remove unused enum --- api/onnx_web/params.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/api/onnx_web/params.py b/api/onnx_web/params.py index 603cf537..40eb2257 100644 --- a/api/onnx_web/params.py +++ b/api/onnx_web/params.py @@ -22,12 +22,6 @@ class TileOrder: spiral = "spiral" -class UpscaleOrder: - correct_first = "correct-first" - correct_last = "correct-last" - correct_both = "correct-both" - - Param = Union[str, int, float] Point = Tuple[int, int]