mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-11 11:19:58 +08:00
* Sort requirements.in * Switch flake8 + isort to ruff * Apply ruff import order fixes * Fix ruff complaints in demo/ * Fix ruff complaints in test/ * Use `x is not y`, not `not x is y` * Remove unused listdir from website generator * Clean up duplicate dict keys * Add changelog entry * Clean up unused imports (except in gradio/__init__.py) * add space --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
8 lines
132 B
Python
8 lines
132 B
Python
from gradio_client.client import Client
|
|
from gradio_client.utils import __version__
|
|
|
|
__all__ = [
|
|
"Client",
|
|
"__version__",
|
|
]
|