Skip to content

Commit

Permalink
Fixed duplicate word ("this this") (#6823)
Browse files Browse the repository at this point in the history
* Fixed duplicate word ("this this")

Fixed duplicate word ("this this")

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
  • Loading branch information
Cassini-chris and gradio-pr-bot committed Dec 18, 2023
1 parent 9ea7b6f commit 67a2b7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/tiny-radios-leave.md
@@ -0,0 +1,5 @@
---
"gradio": minor
---

feat:Fixed duplicate word ("this this")
2 changes: 1 addition & 1 deletion gradio/component_meta.py
Expand Up @@ -51,7 +51,7 @@ def {{ event }}(self,
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.
"""
...
Expand Down

0 comments on commit 67a2b7f

Please sign in to comment.