From 0c7e91311b2280fe614034edff65b45b2320b5e3 Mon Sep 17 00:00:00 2001 From: Jack Langerman Date: Mon, 31 Mar 2025 09:19:30 -0700 Subject: [PATCH] fix typo --- competitions/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/competitions/create.py b/competitions/create.py index a237ca7..39acf73 100644 --- a/competitions/create.py +++ b/competitions/create.py @@ -314,7 +314,7 @@ def main(): with gr.Row(): submission_id_column = gr.Textbox(label="Submission id column", lines=1, value="id") submission_columns = gr.Textbox(label="Submission columns", lines=1, value="id,pred") - submission_rows = gr.Textbox(label="Submission total rows (exclusing header)", lines=1, value="10000") + submission_rows = gr.Textbox(label="Submission total rows (excluding header)", lines=1, value="10000") output_md = gr.Markdown("Click the button below to create the competition") create_competition = gr.Button(value="Create competition")