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])}"