Skip to content

Commit 2520f78

Browse files
bokelleyclaude
andcommitted
fix: remove unused imports and f-string prefix
Removed unused pytest import from test_helpers.py and removed unnecessary f-string prefix from static string in demo script. πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8d681ba commit 2520f78

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

β€Žexamples/test_helpers_demo.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def simplest_example() -> None:
3838

3939
if result.success and result.data:
4040
print(f"βœ… Success! Found {len(result.data.products)} products")
41-
print(f" Protocol: MCP")
41+
print(" Protocol: MCP")
4242
print()
4343
else:
4444
print(f"❌ Error: {result.error}")

β€Žtests/test_helpers.pyβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from __future__ import annotations
44

5-
import pytest
6-
75
from adcp.client import ADCPClient, ADCPMultiAgentClient
86
from adcp.testing import (
97
TEST_AGENT_A2A_CONFIG,

0 commit comments

Comments
Β (0)