diff --git a/redbot/cogs/downloader/downloader.py b/redbot/cogs/downloader/downloader.py index adce10923..f609e58a6 100644 --- a/redbot/cogs/downloader/downloader.py +++ b/redbot/cogs/downloader/downloader.py @@ -199,7 +199,8 @@ class Downloader(commands.Cog): if not deps: return await ctx.send_help() repo = Repo("", "", "", Path.cwd(), loop=ctx.bot.loop) - success = await repo.install_raw_requirements(deps, self.LIB_PATH) + async with ctx.typing(): + success = await repo.install_raw_requirements(deps, self.LIB_PATH) if success: await ctx.send(_("Libraries installed."))