We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 775601c commit a1bf3c8Copy full SHA for a1bf3c8
1 file changed
python/libsharp/tests/test_legendre_table.py
@@ -12,8 +12,8 @@ def test(theta, m, lmax):
12
13
Plm_p = sph_harm(m, np.arange(m, lmax + 1), 0, theta)[None, :]
14
if not np.allclose(Plm_p, Plm):
15
- print Plm_p
16
- print Plm
+ print(Plm_p)
+ print(Plm)
17
return ok_, np.allclose(Plm_p, Plm)
18
19
yield test(np.pi/2, 0, 10)
0 commit comments