From 94e6f7f00766c770de77c9a6fa73c1265cb71758 Mon Sep 17 00:00:00 2001 From: Florian Rupprecht Date: Thu, 12 Sep 2024 12:03:08 -0400 Subject: [PATCH] resolve-parent wrong default value --- src/styxgraph/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styxgraph/__init__.py b/src/styxgraph/__init__.py index 73ba28d..dc39eee 100644 --- a/src/styxgraph/__init__.py +++ b/src/styxgraph/__init__.py @@ -27,7 +27,7 @@ def __init__( self.input_files: list[InputPathType] = [] self.output_files: list[OutputPathType] = [] - def input_file(self, host_file: InputPathType, resolve_parent: bool = True) -> str: + def input_file(self, host_file: InputPathType, resolve_parent: bool = False) -> str: """Resolve input file.""" self.input_files.append(host_file) return self.base.input_file(host_file, resolve_parent=resolve_parent)