From 6cd0762b0645aedabb99a2d2a75959387ea6b547 Mon Sep 17 00:00:00 2001 From: Brian O'Kelley Date: Tue, 14 Oct 2025 21:21:40 -0400 Subject: [PATCH] Fix incorrect schema import in list_creative_formats endpoint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrected import path from _schemas_v1_media_buy_list_creative_formats_response_json to _schemas_v1_creative_list_creative_formats_response_json to match the actual generated schema module name. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/creative_agent/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/creative_agent/server.py b/src/creative_agent/server.py index 70d3924..823587b 100644 --- a/src/creative_agent/server.py +++ b/src/creative_agent/server.py @@ -74,12 +74,12 @@ def list_creative_formats( ) # Import required types - from .schemas_generated._schemas_v1_media_buy_list_creative_formats_response_json import ( + from .schemas_generated._schemas_v1_creative_list_creative_formats_response_json import ( Capability, CreativeAgent, Status, ) - from .schemas_generated._schemas_v1_media_buy_list_creative_formats_response_json import ( + from .schemas_generated._schemas_v1_creative_list_creative_formats_response_json import ( Format as ResponseFormat, )