refactor: code cleanup

This commit is contained in:
Manuel Schmid
2024-06-21 22:43:03 +02:00
parent ebd5e24531
commit c7a411a8c7
-8
View File
@@ -162,14 +162,6 @@ class Performance(Enum):
def values(cls) -> list:
return list(map(lambda c: c.value, cls))
@classmethod
def values(cls) -> list:
return list(map(lambda c: c.value, cls))
@classmethod
def values(cls) -> list:
return list(map(lambda c: c.value, cls))
@classmethod
def by_steps(cls, steps: int | str):
return cls[Steps(int(steps)).name]