From c0b888535d61542a187092a641576faa2698cab1 Mon Sep 17 00:00:00 2001 From: bobloy Date: Thu, 4 Oct 2018 15:02:07 -0400 Subject: [PATCH] Whoops, wrong one --- planttycoon/planttycoon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/planttycoon/planttycoon.py b/planttycoon/planttycoon.py index a41cf12..cbc7aac 100644 --- a/planttycoon/planttycoon.py +++ b/planttycoon/planttycoon.py @@ -12,7 +12,7 @@ from typing import Any Cog: Any = getattr(commands, "Cog", object) -class Gardener(Cog): +class Gardener: """Gardener class""" def __init__(self, user: discord.User, config: Config): @@ -84,7 +84,7 @@ async def _withdraw_points(gardener: Gardener, amount): return True -class PlantTycoon: +class PlantTycoon(Cog): """Grow your own plants! Be sure to take proper care of it.""" def __init__(self, bot: Red):