From 174dd0e95e9e5c4b6ad53e27dec471f996343e00 Mon Sep 17 00:00:00 2001 From: Clare Shanahan Date: Mon, 4 Dec 2023 10:16:42 -0500 Subject: [PATCH] . --- specreduce/tracing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/specreduce/tracing.py b/specreduce/tracing.py index 426b531..3ed15ce 100644 --- a/specreduce/tracing.py +++ b/specreduce/tracing.py @@ -350,7 +350,6 @@ def __post_init__(self): if len(warn_bins) > 0: plural = 's' if len(warn_bins) > 1 else '' # if there are a ton of bins, we don't want to print them all out - print(warn_bins) if len(warn_bins) > 20: warn_bins = warn_bins[0: 10] + ['...'] + [warn_bins[-1]] warnings.warn(f"All pixels in bin{plural} {', '.join([str(x) for x in warn_bins])}"