From 5c306ab503a10ad9312810c6c5a8b58c772b6847 Mon Sep 17 00:00:00 2001 From: ishandhanani Date: Sun, 1 Dec 2024 17:55:32 -0600 Subject: [PATCH] style(AgentService): add newline before function definitions --- services/AgentService/monologue_flow.py | 1 + services/AgentService/podcast_flow.py | 1 + 2 files changed, 2 insertions(+) diff --git a/services/AgentService/monologue_flow.py b/services/AgentService/monologue_flow.py index 663e60e..105a5a9 100644 --- a/services/AgentService/monologue_flow.py +++ b/services/AgentService/monologue_flow.py @@ -179,6 +179,7 @@ async def monologue_create_final_conversation( return Conversation.model_validate(conversation_json) + def unescape_unicode_string(s: str) -> str: """Convert escaped Unicode sequences to actual Unicode characters""" # This handles both raw strings (with extra backslashes) and regular strings diff --git a/services/AgentService/podcast_flow.py b/services/AgentService/podcast_flow.py index 1be87dc..b2ea1ee 100644 --- a/services/AgentService/podcast_flow.py +++ b/services/AgentService/podcast_flow.py @@ -442,6 +442,7 @@ async def podcast_create_final_conversation( return Conversation.model_validate(conversation_json) + def unescape_unicode_string(s: str) -> str: """Convert escaped Unicode sequences to actual Unicode characters""" # This handles both raw strings (with extra backslashes) and regular strings