From d5d9cc6299d4a6e04deb2a9a067f81527c52bcf0 Mon Sep 17 00:00:00 2001 From: johndoknjas Date: Sun, 2 Jun 2024 00:10:13 -0700 Subject: [PATCH] Satisfy black. --- stockfish/models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stockfish/models.py b/stockfish/models.py index ab86ce4..f937a35 100644 --- a/stockfish/models.py +++ b/stockfish/models.py @@ -706,7 +706,9 @@ def is_move_correct(self, move_value: str) -> bool: self.info = old_self_info return is_move_correct - def get_wdl_stats(self, get_as_tuple: bool = False) -> list[int] | tuple[int, int, int] | None: + def get_wdl_stats( + self, get_as_tuple: bool = False + ) -> list[int] | tuple[int, int, int] | None: """Returns Stockfish's win/draw/loss stats for the side to move. Args: