diff options
| -rw-r--r-- | bot/exts/events/code_jams/_cog.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/events/code_jams/_cog.py b/bot/exts/events/code_jams/_cog.py index e385f6441..e099f7dfa 100644 --- a/bot/exts/events/code_jams/_cog.py +++ b/bot/exts/events/code_jams/_cog.py @@ -33,7 +33,7 @@ class CodeJams(commands.Cog):              await ctx.send_help(ctx.command)      @codejam.command() -    async def create(self, ctx: commands.Context, csv_file: t.Optional[str]) -> None: +    async def create(self, ctx: commands.Context, csv_file: t.Optional[str] = None) -> None:          """          Create code-jam teams from a CSV file or a link to one, specifying the team names, leaders and members.  |