We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d56cf5 commit 2eb8d77Copy full SHA for 2eb8d77
games.py
@@ -7,7 +7,7 @@
7
8
from utils import * # noqa
9
10
-infinity = math.inf
+infinity = float('inf')
11
12
# ______________________________________________________________________________
13
# Minimax Search
tests/test_games.py
@@ -1,6 +1,5 @@
1
import pytest
2
import collections
3
-import math
4
from games import *
5
6
# Creating the games
0 commit comments