treewide: fix 'ruff check' errors

This is mostly about unused imports.

A couple errors remain, but are fine in my book (using `l` as a variable
name, assigning a lambda to a variable).
This commit is contained in:
Bruno BELANYI 2024-11-23 19:24:55 +00:00
parent 8618c81b2f
commit f9fc9fbd6b
54 changed files with 21 additions and 64 deletions

View file

@ -25,7 +25,7 @@ class Operator(str, enum.Enum):
class Monkey:
def get_value(self, monkeys: dict[str, "Monkey"]) -> int:
raise NotImplemented
raise NotImplementedError
@dataclasses.dataclass

View file

@ -93,7 +93,7 @@ class MathObserver:
class Monkey:
def get_value(self, monkeys: dict[str, "Monkey"]) -> Num:
raise NotImplemented
raise NotImplementedError
@dataclasses.dataclass