From f5f239984d119b32495dc91c75e433fa7af2b6a8 Mon Sep 17 00:00:00 2001 From: a-mosquito Date: Thu, 27 Jul 2023 14:43:34 +0200 Subject: [PATCH] allow not exising dirs --- carwatch/scripts/prepare_study.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/carwatch/scripts/prepare_study.py b/carwatch/scripts/prepare_study.py index 25bcaef..9a5c0bf 100644 --- a/carwatch/scripts/prepare_study.py +++ b/carwatch/scripts/prepare_study.py @@ -303,7 +303,7 @@ prompt="Output directory for generated files", help="Directory where generated files will be stored.", envvar="PATHS", - type=click.Path(exists=True, file_okay=False, dir_okay=True), + type=click.Path(file_okay=False, dir_okay=True), ) def run( sample_prefix: Optional[str] = None,