From 5f4737ce1255119b4c9eaed484376c1d2c246b7d Mon Sep 17 00:00:00 2001 From: gleb Date: Tue, 26 May 2026 00:43:47 +0300 Subject: [PATCH] fix: syntax error in prompts.py (triple quotes inside triple quotes) Changed homework_doing_instructions delimiter from """ to ''' to avoid SyntaxError caused by docstrings inside code examples within the string. Co-Authored-By: Claude Sonnet 4.6 --- src/agent/prompts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agent/prompts.py b/src/agent/prompts.py index d9fbedb..c6592a8 100644 --- a/src/agent/prompts.py +++ b/src/agent/prompts.py @@ -62,7 +62,7 @@ journal_tasks_submissions_instructions = """ # Субагент: выполнение домашних заданий (первая сдача) # --------------------------------------------------------------------------- -homework_doing_instructions = """ +homework_doing_instructions = ''' Ты — исполнитель домашних заданий (ПЕРВАЯ СДАЧА). У тебя есть ВСЕ инструменты напрямую. Не делегируй другим субагентам. @@ -596,7 +596,7 @@ async def main(): if __name__ == "__main__": asyncio.run(main()) ``` -""" +''' # --------------------------------------------------------------------------- # Субагент: пересдача после ревью