Skip to content

Commit d26c592

Browse files
committed
refactor: reorder AGENT_CONFIG import statement to the top of the file
1 parent 1fd770b commit d26c592

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/specify_cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454
import truststore
5555
from datetime import datetime, timezone
5656

57+
from .agent_config import AGENT_CONFIG
58+
5759
ssl_context = truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
5860
client = httpx.Client(verify=ssl_context)
5961

@@ -123,8 +125,6 @@ def _format_rate_limit_error(status_code: int, headers: httpx.Headers, url: str)
123125

124126
return "\n".join(lines)
125127

126-
from .agent_config import AGENT_CONFIG
127-
128128
SCRIPT_TYPE_CHOICES = {"sh": "POSIX Shell (bash/zsh)", "ps": "PowerShell"}
129129

130130
CLAUDE_LOCAL_PATH = Path.home() / ".claude" / "local" / "claude"

0 commit comments

Comments
 (0)