Skip to content

Commit e422651

Browse files
Rpatel/safe import (#1220)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed --------- Co-authored-by: Codegen Team (Internal) <[email protected]>
1 parent 1ff7eda commit e422651

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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)