game: clean: type hint

This commit is contained in:
starnakin 2024-02-08 12:39:10 +01:00
parent e8cc05fb3c
commit 9aa885c49d

View File

@ -23,7 +23,7 @@ class Point:
return Point(self.x, self.y) return Point(self.x, self.y)
def to_dict(self): def to_dict(self) -> dict:
data: dict[str: float] = { data: dict[str: float] = {
"x": self.x, "x": self.x,