From bdb261cca23a90f51e10eff9858112de208c3f7e Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Thu, 26 Oct 2023 08:49:56 -0700 Subject: [PATCH] Removing corona and pandas install. shoudl speed up build times significantly --- app/cogs/actual_utils.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/app/cogs/actual_utils.py b/app/cogs/actual_utils.py index d2a5bfdd..e088371d 100644 --- a/app/cogs/actual_utils.py +++ b/app/cogs/actual_utils.py @@ -150,25 +150,6 @@ class ActualUtils(commands.Cog): await ctx.defer() await ctx.send_followup(embed=embed) - @commands.slash_command( - guild_ids=None, - name="corona", - description="Query Johns hopkins online covid stats. Requires a location", - ) - @option( - name="location", - required=True, - description="The location you want to see covid stats for", - default="California", - ) - async def corona(self, ctx: commands.Context, location): - import corona - - await ctx.defer() - result = corona.parse_message(location) - - await ctx.send_followup(embed=result) - @commands.slash_command( guld_ids=None, name="stock",