From 373a7d45487b31b40066b11e34ac42bf731a6318 Mon Sep 17 00:00:00 2001 From: Malcolm White Date: Wed, 31 Mar 2021 12:27:42 -0400 Subject: [PATCH] Remove vestigial print statement from debugging. --- pykonal/transformations.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pykonal/transformations.py b/pykonal/transformations.py index 83d69f3..dc55848 100644 --- a/pykonal/transformations.py +++ b/pykonal/transformations.py @@ -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)