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.")