mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
fix: Code component not accepting Callable as type on value (#7304)
This commit is contained in:
parent
0fddd0f971
commit
87eedf4e70
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user