fix linter issues

This commit is contained in:
Julian Pawlowski 2025-11-03 20:52:10 +00:00
parent 2e1fb2f061
commit aaa66227d4
2 changed files with 4 additions and 4 deletions

View file

@ -13,9 +13,9 @@ fi
echo "==> Running linting tools..."
echo "==> Running Ruff format..."
uv run ruff format .
uv run --active ruff format .
echo "==> Running Ruff check..."
uv run ruff check . --fix
uv run --active ruff check . --fix
echo "==> Linting completed!"

View file

@ -11,9 +11,9 @@ if [ -z "$VIRTUAL_ENV" ]; then
fi
echo "==> Checking code format..."
uv run ruff format . --check
uv run --active ruff format . --check
echo "==> Checking code with Ruff..."
uv run ruff check .
uv run --active ruff check .
echo "==> Linting check completed!"