From a8609e7604a0e5c6b949d8591e733658c4833455 Mon Sep 17 00:00:00 2001 From: Paul Ray Date: Fri, 16 Dec 2022 10:25:11 -0500 Subject: [PATCH] Remove excess print statement in pintbary --- src/pint/scripts/pintbary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pint/scripts/pintbary.py b/src/pint/scripts/pintbary.py index 545763262..309fce176 100755 --- a/src/pint/scripts/pintbary.py +++ b/src/pint/scripts/pintbary.py @@ -95,7 +95,7 @@ def main(argv=None): t = Time( np.longdouble(args.time), scale=args.timescale, format=fmt, precision=9 ) - print(t) + # print(t) else: t = Time(args.time, scale=args.timescale, format=args.format, precision=9) log.debug(t.iso)