chore(internal): codegen related update

This commit is contained in:
stainless-app[bot] 2025-12-19 04:04:48 +00:00
parent 9fa8fed284
commit e10bc2dcbd

View file

@ -4,8 +4,13 @@ set -e
cd "$(dirname "$0")/.."
echo "==> Running lints"
rye run lint
if [ "$1" = "--fix" ]; then
echo "==> Running lints with --fix"
rye run fix:ruff
else
echo "==> Running lints"
rye run lint
fi
echo "==> Making sure it imports"
rye run python -c 'import opencode_ai'