Run black on queen.py to fix Flake8 formatting complaint

This commit is contained in:
Brian Wignall
2026-01-04 05:14:15 -05:00
parent b1585bab9b
commit 888f4a4330

View File

@@ -117,9 +117,9 @@ COMPUTER_SAFE_SPOTS: Final[FrozenSet[Tuple[int, int]]] = frozenset(
)
# These are the places that the computer will always try to move into.
COMPUTER_PREF_MOVES: Final[
FrozenSet[Tuple[int, int]]
] = COMPUTER_SAFE_SPOTS | frozenset([WIN_LOC])
COMPUTER_PREF_MOVES: Final[FrozenSet[Tuple[int, int]]] = (
COMPUTER_SAFE_SPOTS | frozenset([WIN_LOC])
)
# These are the locations (not including the win location) from which either player can
# force a win (but the computer will always choose one of the COMPUTER_PREF_MOVES).