We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b14dc08 commit d79265cCopy full SHA for d79265c
1 file changed
src/codegen/cli/commands/claude/config/claude_session_hook.py
@@ -11,15 +11,14 @@
11
import sys
12
from pathlib import Path
13
14
-from codegen.cli.utils.org import resolve_org_id
15
-
16
# Add the codegen CLI to the path so we can import from it
17
script_dir = Path(__file__).parent
18
codegen_cli_dir = script_dir.parent.parent.parent
19
sys.path.insert(0, str(codegen_cli_dir))
20
21
try:
22
from codegen.cli.commands.claude.claude_session_api import create_claude_session
+ from codegen.cli.utils.org import resolve_org_id
23
except ImportError:
24
create_claude_session = None
25
0 commit comments