mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
0dc49b4c51
* add support for async functions and iterators to ChatInterface * fix api * added support to examples * add tests * chat * add changeset * typing * chat interface * anyio * anyio generator --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
11 lines
272 B
Bash
Executable File
11 lines
272 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 scripts/type_check_backend.sh
|
|
|
|
bash client/python/scripts/format.sh # Call the client library's formatting script
|