1
0
Fork 0

fix(api): correctly create model path

This commit is contained in:
Sean Sube 2023-01-31 19:32:34 -06:00
parent 6c22cb1cbf
commit f302be7f50
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ def main() -> int:
args = parser.parse_args()
logger.info('CLI arguments: %s', args)
if path.exists(model_path):
if not path.exists(model_path):
logger.info('Model path does not existing, creating: %s', model_path)
makedirs(model_path)