Skip to content

Commit 18a8bf9

Browse files
committed
Fix default argument type of merge
1 parent a6eb6e1 commit 18a8bf9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

preciceprofiling/merge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def makeMergeParser(add_help: bool = True):
477477
type=pathlib.Path,
478478
nargs="*",
479479
help="The profiling files to process, directories to search, or nothing to autodetect",
480-
default=["."],
480+
default=[pathlib.Path(".")],
481481
)
482482
merge.add_argument(
483483
"-o",

0 commit comments

Comments
 (0)