From b472b1f17f545fed03559e0e4fe26761e6769567 Mon Sep 17 00:00:00 2001 From: ltbrizolara <162489711+ltbrizolara@users.noreply.github.com> Date: Wed, 15 May 2024 01:07:11 -0300 Subject: [PATCH] Remove print statement left in stack_curves method (#596) A print statement was left in stack_curves method, printing to the console the list of all mnemonics to be stacked. And they can be thousands... --- lasio/las.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lasio/las.py b/lasio/las.py index 47b3cb2..724a03f 100644 --- a/lasio/las.py +++ b/lasio/las.py @@ -1055,7 +1055,6 @@ def stack_curves(self, mnemonic, sort_curves=True): channels = list(mnemonic) else: raise TypeError("`mnemonic` argument must be string or sequence") - print(channels) if not set(keys).issuperset(set(channels)): missing = ", ".join(set(channels).difference(set(keys)))