File size: 261 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash -eu
cd "$(dirname ${0})/.."
echo "Formatting the backend... Our style follows the ruff code style."
python -c "import gradio"
python -m ruff check --fix gradio test client
python -m ruff format gradio test client
bash scripts/type_check_backend.sh |