Skip to content

Commit

Permalink
feature: add possibility to give a relative path (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgatto authored Dec 17, 2020
1 parent 13637e9 commit a323a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/src_python/antares_xpansion/xpansionConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(self, configfile: Path):
args = parser.parse_args()
self.step = args.step
self.simulationName = args.simulationName
self.dataDir = args.dataDir
self.dataDir = str(Path(args.dataDir).resolve())
self.installDir = args.installDir
self.method = args.method
self.c = args.c
Expand Down

0 comments on commit a323a48

Please sign in to comment.