Skip to content

Commit d79265c

Browse files
committed
fix: safe import
1 parent b14dc08 commit d79265c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/codegen/cli/commands/claude/config/claude_session_hook.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@
1111
import sys
1212
from pathlib import Path
1313

14-
from codegen.cli.utils.org import resolve_org_id
15-
1614
# Add the codegen CLI to the path so we can import from it
1715
script_dir = Path(__file__).parent
1816
codegen_cli_dir = script_dir.parent.parent.parent
1917
sys.path.insert(0, str(codegen_cli_dir))
2018

2119
try:
2220
from codegen.cli.commands.claude.claude_session_api import create_claude_session
21+
from codegen.cli.utils.org import resolve_org_id
2322
except ImportError:
2423
create_claude_session = None
2524

0 commit comments

Comments
 (0)