fix: add workaround for same value in Steps IntEnum (#3153)

This commit is contained in:
Manuel Schmid
2024-06-16 18:44:16 +02:00
committed by GitHub
parent 3e453501f7
commit 9d41c9521b
2 changed files with 7 additions and 2 deletions
+4
View File
@@ -131,6 +131,10 @@ class Steps(IntEnum):
LIGHTNING = 4
HYPER_SD = 4
@classmethod
def keys(cls) -> list:
return list(map(lambda c: c, Steps.__members__))
class StepsUOV(IntEnum):
QUALITY = 36