Skip to content

Commit 34d87aa

Browse files
Not an f-string
1 parent 69ffeef commit 34d87aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tictactoe/egtb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def save_results(self) -> str:
3737
Save the EGTB.
3838
:return: The sha256 checksum of the contents of the EGTB file.
3939
"""
40-
logger.debug(f"Saving the EGTB.")
40+
logger.debug("Saving the EGTB.")
4141
name = f"{'_'.join(map(str, self.dimensions))}-{self.x_in_a_row}-{self.pieces}.ttb"
4242
with open(name, "wb") as file:
4343
for eight_bits in re.findall(r"\d{1,8}", "".join(self.results)):
@@ -61,7 +61,7 @@ def get_all_board(self) -> None:
6161
"""
6262
Generate the EGTB.
6363
"""
64-
logger.debug(f"Generating the EGTB.")
64+
logger.debug("Generating the EGTB.")
6565
total_squares = functools.reduce(operator.mul, self.dimensions)
6666
empty_squares = total_squares - self.pieces
6767
number_of_x = self.pieces // 2 + self.pieces % 2

0 commit comments

Comments
 (0)