Skip to content

Commit

Permalink
Remove print statement left in stack_curves method (#596)
Browse files Browse the repository at this point in the history
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...
  • Loading branch information
ltbrizolara authored May 15, 2024
1 parent e33edd9 commit b472b1f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lasio/las.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit b472b1f

Please sign in to comment.