refactor: code cleanup

This commit is contained in:
Manuel Schmid 2024-06-21 22:43:03 +02:00
parent ebd5e24531
commit c7a411a8c7
No known key found for this signature in database
GPG Key ID: 32C4F7569B40B84B
1 changed files with 0 additions and 8 deletions

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]