diff --git a/battleroyale/core.py b/battleroyale/core.py index bf2ced8..f7ee929 100644 --- a/battleroyale/core.py +++ b/battleroyale/core.py @@ -480,7 +480,7 @@ async def battleroyale( self.games[join_view._message] = game await game.start(ctx, players=players, original_message=join_view._message) - @cast(commands.Group, battleroyale).command() # noqa: E501 + @cast(commands.Group, battleroyale).command() # noqa: E999 async def auto( self, ctx: commands.GuildContext, @@ -516,7 +516,7 @@ async def auto( self.games[message] = game await game.start(ctx, players=players, original_message=message) - @cast(commands.Group, battleroyale).command() # noqa: E501 + @cast(commands.Group, battleroyale).command() # noqa: E999 async def role( self, ctx: commands.GuildContext, @@ -567,7 +567,7 @@ async def role( self.games[message] = game await game.start(ctx, players=players, original_message=message) - @cast(commands.Group, battleroyale).group( # noqa: E501 + @cast(commands.Group, battleroyale).group( # noqa: E999 name="profile", aliases=["stats"], invoke_without_command=True ) async def profile(self, ctx: commands.GuildContext, *, user: Optional[discord.Member] = None):