Skip to content

Commit 7c1a101

Browse files
authored
hotfix: add missing method in performance enum (lllyasviel#3154)
1 parent 9d41c95 commit 7c1a101

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

modules/flags.py

+4
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ class Performance(Enum):
155155
def list(cls) -> list:
156156
return list(map(lambda c: c.value, cls))
157157

158+
@classmethod
159+
def values(cls) -> list:
160+
return list(map(lambda c: c.value, cls))
161+
158162
@classmethod
159163
def by_steps(cls, steps: int | str):
160164
return cls[Steps(int(steps)).name]

0 commit comments

Comments
 (0)