Skip to content

Commit 24b0b35

Browse files
authored
Don't automatically add --resample, since it makes it impossible to run with non-smc (#15)
1 parent 21e25c2 commit 24b0b35

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

treeppl/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,6 @@ def __init__(
8080
args.append(f"--{k.replace('_', '-')}")
8181
if v is not True:
8282
args.append(str(v))
83-
if not "resample" in kwargs:
84-
args.extend(["--resample", "align"])
8583
with Popen(
8684
args=args, cwd=self.temp_dir.name, stdout=PIPE, stderr=STDOUT
8785
) as proc:

0 commit comments

Comments
 (0)