From 215620b4ec2469c33a41ab5dc58d8d39689530f5 Mon Sep 17 00:00:00 2001 From: Sigurd Borge Date: Fri, 10 Jan 2025 17:30:26 +0100 Subject: [PATCH] Rebase --- src/antares/craft/model/study.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/antares/craft/model/study.py b/src/antares/craft/model/study.py index 8b29dbf..8157728 100644 --- a/src/antares/craft/model/study.py +++ b/src/antares/craft/model/study.py @@ -432,6 +432,7 @@ def delete_output(self, output_name: str) -> None: def move(self, destination_folder: Path) -> None: self._study_service.move_study(destination_folder) + def _verify_study_already_exists(study_directory: Path) -> None: if study_directory.exists(): raise FileExistsError(f"Study {study_directory.name} already exists.")