fix: Code component not accepting Callable as type on value (#7304)

This commit is contained in:
Davi Rodrigues 2024-02-05 13:48:15 -03:00 committed by GitHub
parent 0fddd0f971
commit 87eedf4e70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@
from __future__ import annotations
from pathlib import Path
from typing import Any, Literal
from typing import Any, Callable, Literal
from gradio_client.documentation import document
@ -41,7 +41,7 @@ class Code(Component):
def __init__(
self,
value: str | tuple[str] | None = None,
value: str | Callable | tuple[str] | None = None,
language: Literal[
"python",
"markdown",