refactor(Moonraker): rework remove process

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
dw-0
2023-12-25 15:12:08 +01:00
parent 8aeb01aca0
commit 012b6c4bb7
9 changed files with 308 additions and 144 deletions

View File

@@ -124,7 +124,7 @@ class BaseInstance(ABC):
raise NotImplementedError("Subclasses must implement the create method")
@abstractmethod
def delete(self, del_remnants: bool) -> None:
def delete(self) -> None:
raise NotImplementedError("Subclasses must implement the delete method")
def create_folders(self, add_dirs: List[Path] = None) -> None: