Skip to content

Commit 083e003

Browse files
authored
Merge pull request #451 from QuantEcon/warning-fix
Fix warning in test_pure_nash
2 parents fd12ca2 + 65439f3 commit 083e003

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quantecon/game_theory/tests/test_pure_nash.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def setUp(self):
3939
for k in range(2, N-2+1):
4040
for ind in itertools.combinations(range(N), k):
4141
a = np.ones(N, dtype=int)
42-
a[[ind]] = 0
42+
a[list(ind)] = 0
4343
Unanimity_NE.append(tuple(a))
4444
Unanimity_NE.append((1,)*N)
4545

0 commit comments

Comments
 (0)