fix(youtubedownloader): awaited a corotuine
All checks were successful
Pylint / Pylint (3.10) (push) Successful in 49s

This commit is contained in:
Seaswimmer 2023-11-26 13:25:24 -05:00
parent fc9e6fd273
commit 8ca56695e3
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -58,7 +58,7 @@ class YouTubeDownloader(commands.Cog):
- The `subfolder` argument only does anything if `delete` is set to False, but it allows you to save to a subfolder in the data path you've set previously without having to change said data path manually."""
try:
self.blacklist_checker(ctx.author.id)
await self.blacklist_checker(ctx.author.id)
except self.UserBlacklisted:
await ctx.send("You are blacklisted from running this command!")
return