From a52bc7a931017b0ed215e2e3a7a333310abe73ca Mon Sep 17 00:00:00 2001 From: pyob-bot Date: Fri, 12 Jun 2026 03:36:52 +0000 Subject: [PATCH] Refactor: Add type annotation to memory_content variable --- src/pyob/core_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyob/core_utils.py b/src/pyob/core_utils.py index 27cf59b..494d28a 100644 --- a/src/pyob/core_utils.py +++ b/src/pyob/core_utils.py @@ -412,7 +412,7 @@ def restore_workspace(self, state: dict[str, str]) -> None: def load_memory(self) -> str: """Loads persistent memory and injects repo-level human directives.""" - memory_content = "" + memory_content: str = "" if os.path.exists(self.memory_path): try: