Skip to content

Commit

Permalink
Merge cad21ae into d53630a
Browse files Browse the repository at this point in the history
  • Loading branch information
mferrera authored Jul 21, 2023
2 parents d53630a + cad21ae commit 5d1b009
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/subscript/eclcompress/eclcompress.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import re
import shutil
import textwrap
import warnings
from pathlib import Path
from typing import List, Optional, Pattern, Tuple, Union

Expand Down Expand Up @@ -97,6 +98,12 @@ def eclcompress(
if not isinstance(files, list):
files = [files] # List with one element

if eclkw_regexp:
warnings.warn(
"Providing a keyword regex will be removed in Komodo 2023.11.",
DeprecationWarning,
)

totalsavings = 0

for filename in files:
Expand Down

0 comments on commit 5d1b009

Please sign in to comment.