add types to BlunderEvaluator

This commit is contained in:
Thomas Lindner 2022-12-29 17:43:20 +01:00
parent 34f10471d3
commit 49e7c9a7f9

View file

@ -1,6 +1,6 @@
class BlunderEvaluator:
def reset(self):
def reset(self) -> None:
pass
def move(self, move):
def move(self, move: str) -> None:
pass