From 0ec88d5aba0c153bf5bc16caf7088a1c9676ecae Mon Sep 17 00:00:00 2001 From: Floke Date: Wed, 31 Dec 2025 14:30:02 +0000 Subject: [PATCH] fix(gtm): Final syntax fix for dictionaries and f-strings --- gtm_architect_orchestrator.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtm_architect_orchestrator.py b/gtm_architect_orchestrator.py index 48d00d3b..e715d900 100644 --- a/gtm_architect_orchestrator.py +++ b/gtm_architect_orchestrator.py @@ -298,11 +298,11 @@ def main(): try: data = json.loads(sys.stdin.read()) except: - data = {{}} + data = {} else: - data = {{}} + data = {} - modes = {{ + modes = { "analyze_product": analyze_product, "discover_icps": discover_icps, "hunt_whales": hunt_whales,