We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd12ca2 + 65439f3 commit 083e003Copy full SHA for 083e003
quantecon/game_theory/tests/test_pure_nash.py
@@ -39,7 +39,7 @@ def setUp(self):
39
for k in range(2, N-2+1):
40
for ind in itertools.combinations(range(N), k):
41
a = np.ones(N, dtype=int)
42
- a[[ind]] = 0
+ a[list(ind)] = 0
43
Unanimity_NE.append(tuple(a))
44
Unanimity_NE.append((1,)*N)
45
0 commit comments