Skip to content

Commit 6982415

Browse files
Fix lint script hanging on import check in CI
rye run python hangs indefinitely in CI after pyright completes. Using .venv/bin/python directly avoids the rye subprocess wrapper that causes the hang. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent 2ef508c commit 6982415

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ else
1313
fi
1414

1515
echo "==> Making sure it imports"
16-
rye run python -c 'import hubspot_sdk'
16+
.venv/bin/python -c 'import hubspot_sdk'

0 commit comments

Comments
 (0)