Skip to content

Commit 30e31f7

Browse files
youbekbokelley
authored andcommitted
fix: mypy failures
1 parent ab7047f commit 30e31f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/adcp/utils/preview_cache.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ async def get_preview_data_for_manifest(
7474

7575
try:
7676
request = PreviewCreativeRequest(
77-
format_id=format_id, creative_manifest=manifest, inputs=None, template_id=None
77+
format_id=format_id, creative_manifest=manifest, inputs=None, template_id=None, context=None
7878
)
7979
result = await self.creative_agent_client.preview_creative(request)
8080

@@ -164,6 +164,7 @@ async def get_preview_data_batch(
164164
batch_request = PreviewCreativeRequest(
165165
requests=chunk_requests,
166166
output_format=output_format, # type: ignore[arg-type]
167+
context=None,
167168
)
168169
result = await self.creative_agent_client.preview_creative(batch_request)
169170

0 commit comments

Comments
 (0)