Absolute path happens later

This commit is contained in:
bkerbl 2023-07-07 01:54:20 +02:00
parent 72d3ea64c9
commit 0327061ffd
3 changed files with 2 additions and 3 deletions

@ -1 +1 @@
Subproject commit 44184daf8bdbbf66e2f646495c5558734c892eb2 Subproject commit c9011d1a328dad59ee2f07afbb13ee1629fcc305

@ -1 +1 @@
Subproject commit 3e0148f56d42708b4bd7f179f6b239081a6f4dd1 Subproject commit 6bd41975906494776bce66f81af7cc23b6008041

View File

@ -57,7 +57,6 @@ class ModelParams(ParamGroup):
def extract(self, args): def extract(self, args):
g = super().extract(args) g = super().extract(args)
g.model_path = os.path.abspath(g.model_path)
g.source_path = os.path.abspath(g.source_path) g.source_path = os.path.abspath(g.source_path)
return g return g