mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
5f8186218c
* document py client * more changes * update docs * changes * fix tests * formatting * stash * fix tests * documentation * more docs * gradio client * changes * rework documentation * add to docs * modify dockerfile * gradio client * address feedback * formatting * gradio client version * fix tests * tweaks to website --------- Co-authored-by: aliabd <ali.si3luwa@gmail.com>
10 lines
237 B
Bash
Executable File
10 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname ${0})/.."
|
|
|
|
echo "Formatting the backend... Our style follows the Black code style."
|
|
ruff --fix gradio test
|
|
black gradio test
|
|
|
|
bash client/python/scripts/format.sh # Call the client library's formatting script
|