Skip to content

Commit 8d681ba

Browse files
bokelleyclaude
andcommitted
fix: organize imports to satisfy linter
Moved test helper imports to proper location according to ruff's import sorting rules. Test helpers now imported after exceptions and before core types. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 49abbb4 commit 8d681ba

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/adcp/__init__.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,17 @@
1818
ADCPWebhookError,
1919
ADCPWebhookSignatureError,
2020
)
21+
22+
# Test helpers
23+
from adcp.testing import (
24+
TEST_AGENT_A2A_CONFIG,
25+
TEST_AGENT_MCP_CONFIG,
26+
TEST_AGENT_TOKEN,
27+
create_test_agent,
28+
test_agent,
29+
test_agent_a2a,
30+
test_agent_client,
31+
)
2132
from adcp.types.core import AgentConfig, Protocol, TaskResult, TaskStatus, WebhookMetadata
2233
from adcp.types.generated import (
2334
ActivateSignalError,
@@ -133,17 +144,6 @@
133144
TaskStatus as GeneratedTaskStatus,
134145
)
135146

136-
# Test helpers
137-
from adcp.testing import (
138-
TEST_AGENT_A2A_CONFIG,
139-
TEST_AGENT_MCP_CONFIG,
140-
TEST_AGENT_TOKEN,
141-
create_test_agent,
142-
test_agent,
143-
test_agent_a2a,
144-
test_agent_client,
145-
)
146-
147147
__version__ = "1.2.1"
148148

149149
__all__ = [

0 commit comments

Comments
 (0)