From 8dfabee00495ccbbd6743da07fa06c75cac3fb5f Mon Sep 17 00:00:00 2001 From: "Dr. Christoph Mittendorf" <34183942+Cassini-chris@users.noreply.github.com> Date: Mon, 8 Jan 2024 03:57:07 +0100 Subject: [PATCH] fixed typo (#6963) * fixed typo stored vs storied * add changeset * add changeset --------- Co-authored-by: gradio-pr-bot --- .changeset/tame-loops-clean.md | 5 +++++ gradio/flagging.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/tame-loops-clean.md diff --git a/.changeset/tame-loops-clean.md b/.changeset/tame-loops-clean.md new file mode 100644 index 000000000000..0ae3c0f1bff4 --- /dev/null +++ b/.changeset/tame-loops-clean.md @@ -0,0 +1,5 @@ +--- +"gradio": patch +--- + +feat:fixed typo diff --git a/gradio/flagging.py b/gradio/flagging.py index ef5df07cbab9..4f45057bc534 100644 --- a/gradio/flagging.py +++ b/gradio/flagging.py @@ -37,7 +37,7 @@ def setup(self, components: list[Component], flagging_dir: str): This method gets called once at the beginning of the Interface.launch() method. Parameters: components: Set of components that will provide flagged data. - flagging_dir: A string, typically containing the path to the directory where the flagging file should be storied (provided as an argument to Interface.__init__()). + flagging_dir: A string, typically containing the path to the directory where the flagging file should be stored (provided as an argument to Interface.__init__()). """ pass