Skip to content

Commit

Permalink
Remove vestigial print statement from debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
Malcolm White committed Mar 31, 2021
1 parent 82e6fda commit 373a7d4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pykonal/transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def sph2sph(nodes, origin=(0,0,0), force_phi_positive=False):
np.seterr(**old)
pp = np.arctan2(xyz[...,1], xyz[...,0])
pp = np.mod(pp, 2*np.pi)
print(force_phi_positive)
if force_phi_positive is False:
np.mod(pp, -np.pi, pp, where=pp>np.pi)
rtp = np.moveaxis(np.stack([rr, tt, pp]), 0, -1)
Expand Down

0 comments on commit 373a7d4

Please sign in to comment.