Skip to content

Commit 7ca521c

Browse files
committed
fix: update path location for codegen pacakge
1 parent d79265c commit 7ca521c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# Add the codegen CLI to the path so we can import from it
1515
script_dir = Path(__file__).parent
16-
codegen_cli_dir = script_dir.parent.parent.parent
16+
codegen_cli_dir = script_dir.parent.parent.parent.parent
1717
sys.path.insert(0, str(codegen_cli_dir))
1818

1919
try:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# Add the codegen CLI to the path so we can import from it
1515
script_dir = Path(__file__).parent
16-
codegen_cli_dir = script_dir.parent.parent.parent
16+
codegen_cli_dir = script_dir.parent.parent.parent.parent
1717
sys.path.insert(0, str(codegen_cli_dir))
1818

1919
try:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# Add the codegen CLI to the path so we can import from it
1515
script_dir = Path(__file__).parent
16-
codegen_cli_dir = script_dir.parent.parent.parent
16+
codegen_cli_dir = script_dir.parent.parent.parent.parent
1717
sys.path.insert(0, str(codegen_cli_dir))
1818

1919
try:

0 commit comments

Comments
 (0)