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",