mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
fix linter issues
This commit is contained in:
parent
2e1fb2f061
commit
aaa66227d4
2 changed files with 4 additions and 4 deletions
|
|
@ -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!"
|
||||
|
|
|
|||
|
|
@ -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!"
|
||||
|
|
|
|||
Loading…
Reference in a new issue