From 0c112b7bcfbf771938d6ec9ba0afa36bd60f923e Mon Sep 17 00:00:00 2001 From: Martin <martin.hogstedt@hotmail.com> Date: Mon, 17 Jun 2024 15:32:42 +0200 Subject: [PATCH] removed default value from content in save state to file funciton --- src/simudator/core/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simudator/core/module.py b/src/simudator/core/module.py index b7da1ff..dc65434 100644 --- a/src/simudator/core/module.py +++ b/src/simudator/core/module.py @@ -116,7 +116,7 @@ class Module: """ print(self.name) - def _helper_save_state_to_file(self, file_path: str, content="") -> bool: + def _helper_save_state_to_file(self, file_path: str, content: str) -> bool: """ Tries to save the content to a given file. -- GitLab