Skip to content

Commit

Permalink
resolve-parent wrong default value
Browse files Browse the repository at this point in the history
  • Loading branch information
nx10 committed Sep 12, 2024
1 parent cd2a84b commit 94e6f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/styxgraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 94e6f7f

Please sign in to comment.