Skip to content

Commit

Permalink
[Discord] Improve file command type hint formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Nov 20, 2023
1 parent 16f95f9 commit 7ea2325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Discord/cogs/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ async def tts_options(
@commands.command()
@checks.is_voice_connected()
@commands.check_any(checks.is_permitted(), checks.is_guild_owner())
async def file(self, ctx, *, filename : str = ""):
async def file(self, ctx, *, filename: str = ""):
'''Play an audio file'''
if not (await self.players[ctx.guild.id].play_file(ctx, filename)):
await ctx.embed_reply(
Expand Down

0 comments on commit 7ea2325

Please sign in to comment.