From 67a2b7f12cb06355fcc41e40d47e8b2ad211d7d1 Mon Sep 17 00:00:00 2001 From: "Dr. Christoph Mittendorf" <34183942+Cassini-chris@users.noreply.github.com> Date: Mon, 18 Dec 2023 13:00:44 +0100 Subject: [PATCH] Fixed duplicate word ("this this") (#6823) * Fixed duplicate word ("this this") Fixed duplicate word ("this this") * add changeset --------- Co-authored-by: gradio-pr-bot --- .changeset/tiny-radios-leave.md | 5 +++++ gradio/component_meta.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/tiny-radios-leave.md diff --git a/.changeset/tiny-radios-leave.md b/.changeset/tiny-radios-leave.md new file mode 100644 index 0000000000..2897e5c4d9 --- /dev/null +++ b/.changeset/tiny-radios-leave.md @@ -0,0 +1,5 @@ +--- +"gradio": minor +--- + +feat:Fixed duplicate word ("this this") diff --git a/gradio/component_meta.py b/gradio/component_meta.py index c33c383f82..e4894502fa 100644 --- a/gradio/component_meta.py +++ b/gradio/component_meta.py @@ -51,7 +51,7 @@ INTERFACE_TEMPLATE = ''' every: Run this event 'every' number of seconds while the client connection is open. Interpreted in seconds. Queue must be enabled. trigger_mode: If "once" (default for all events except `.change()`) would not allow any submissions while an event is pending. If set to "multiple", unlimited submissions are allowed while pending, and "always_last" (default for `.change()` event) would allow a second submission after the pending event is complete. js: Optional frontend js method to run before running 'fn'. Input arguments for js method are values of 'inputs' and 'outputs', return should be a list of values for output components. - concurrency_limit: If set, this this is the maximum number of this event that can be running simultaneously. Can be set to None to mean no concurrency_limit (any number of this event can be running simultaneously). Set to "default" to use the default concurrency limit (defined by the `default_concurrency_limit` parameter in `Blocks.queue()`, which itself is 1 by default). + concurrency_limit: If set, this is the maximum number of this event that can be running simultaneously. Can be set to None to mean no concurrency_limit (any number of this event can be running simultaneously). Set to "default" to use the default concurrency limit (defined by the `default_concurrency_limit` parameter in `Blocks.queue()`, which itself is 1 by default). concurrency_id: If set, this is the id of the concurrency group. Events with the same concurrency_id will be limited by the lowest set concurrency_limit. """ ...