game: clean: type hint

This commit is contained in:
starnakin 2024-02-08 12:39:10 +01:00 committed by AdrienLSH
parent c60d0ba08b
commit ce35db8b83

View File

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