Skip to content

Commit a1bf3c8

Browse files
committed
Fix missing parentheses
1 parent 775601c commit a1bf3c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/libsharp/tests/test_legendre_table.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def test(theta, m, lmax):
1212

1313
Plm_p = sph_harm(m, np.arange(m, lmax + 1), 0, theta)[None, :]
1414
if not np.allclose(Plm_p, Plm):
15-
print Plm_p
16-
print Plm
15+
print(Plm_p)
16+
print(Plm)
1717
return ok_, np.allclose(Plm_p, Plm)
1818

1919
yield test(np.pi/2, 0, 10)

0 commit comments

Comments
 (0)