From e2bc9d9e51aa07f93884b942af6919478a6e87c6 Mon Sep 17 00:00:00 2001 From: cyberrumor Date: Sun, 29 Oct 2023 20:56:05 -0700 Subject: [PATCH] Better defaults for abstract controller class --- ammo/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ammo/controller.py b/ammo/controller.py index 9f5163a..ad5e3ee 100755 --- a/ammo/controller.py +++ b/ammo/controller.py @@ -29,7 +29,7 @@ def _post_exec(self) -> bool: This function is executed after every command. It returns whether the UI should break from repl. """ - return True + return False @abstractmethod def _normalize(self, destination: Path, dest_prefix: Path) -> Path: