diff options
Diffstat (limited to 'bot/cogs/hacktober/scarymovie.py')
-rw-r--r-- | bot/cogs/hacktober/scarymovie.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bot/cogs/hacktober/scarymovie.py b/bot/cogs/hacktober/scarymovie.py index 97e9f424..c2298c65 100644 --- a/bot/cogs/hacktober/scarymovie.py +++ b/bot/cogs/hacktober/scarymovie.py @@ -23,8 +23,9 @@ class ScaryMovie: """ Randomly select a scary movie and display information about it. """ - selection = await self.select_movie() - movie_details = await self.format_metadata(selection) + async with ctx.typing(): + selection = await self.select_movie() + movie_details = await self.format_metadata(selection) await ctx.send(embed=movie_details) |