mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
17 lines
246 B
Bash
Executable file
17 lines
246 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# script/type-check: Run type checking tools
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [ -z "$VIRTUAL_ENV" ]; then
|
|
. "$HOME/.venv/bin/activate"
|
|
fi
|
|
|
|
echo "==> Running type checking tools..."
|
|
|
|
pyright
|
|
|
|
echo "==> Type checking completed."
|