Commit 70feae49 authored by Adam Blank's avatar Adam Blank
Browse files

Update harder_computer.py

parent c786a9de
No related merge requests found
Pipeline #118941 canceled with stage
Showing with 1 addition and 1 deletion
+1 -1
...@@ -2,7 +2,7 @@ from typing import Final ...@@ -2,7 +2,7 @@ from typing import Final
from .easy_computer import easy_computer, get_all_shots from .easy_computer import easy_computer, get_all_shots
from .shot import Outcome from .shot import Outcome
HIT = Outcome.HIT HIT: Outcome = Outcome.HIT # type: ignore
easy_computer, get_all_shots, HIT easy_computer, get_all_shots, HIT
BOARD_SIZE: Final[int] = 8 BOARD_SIZE: Final[int] = 8
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment