From d7add39ad4eb658d3d2f0b4804d6da30f797d7bc Mon Sep 17 00:00:00 2001 From: provos Date: Thu, 6 Jun 2024 07:26:45 -0700 Subject: [PATCH] chore: Remove unnecessary print statement in AppState save_state method --- controller.py | 1 - 1 file changed, 1 deletion(-) diff --git a/controller.py b/controller.py index cd047f1..587f106 100644 --- a/controller.py +++ b/controller.py @@ -539,7 +539,6 @@ def to_file(self, file_path, save_image_slices=True, save_depth_map=True, save_i file_path (str): The file path to save the state. save_image_slices (bool, optional): Whether to save the image slices. Defaults to True. """ - print('Saving state to file:', file_path) with self._lock: file_path = Path(file_path) # check if file path is a directory. if not create it