From a76a1c728271730f8fda688cea64286ce6453692 Mon Sep 17 00:00:00 2001 From: Tom Aldcroft Date: Mon, 21 Feb 2022 10:31:49 -0500 Subject: [PATCH] Remove debug print statements --- cxotime/cxotime.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cxotime/cxotime.py b/cxotime/cxotime.py index af5e952..86b0438 100644 --- a/cxotime/cxotime.py +++ b/cxotime/cxotime.py @@ -365,7 +365,6 @@ def set_jds(self, val1, val2): # or if the fast parser is entirely disabled. # Allow for float input if val1.dtype.kind in ('f', 'i'): - print(val1, val1.dtype, val1.shape) val1 = np.array(['{:.9f}'.format(x) for x in val1.flat]).reshape(val1.shape) self.set_jds_fast(val1) @@ -424,7 +423,6 @@ def _check_val_type(self, val1, val2): raise ValueError(f'cannot supply val2 for {self.name} format') if val1.dtype.kind not in ('S', 'U', 'i'): - print(val1, val1.dtype.kind) raise TypeError('Input values for {0} class must be string or int' .format(self.name))