diff options
author | 2019-03-05 16:36:36 -0500 | |
---|---|---|
committer | 2019-03-05 16:36:36 -0500 | |
commit | 04b77c0afca0fb0ae37de4f1add5e17fe7d7a227 (patch) | |
tree | 65da8a45e948d911a09e9eed866ffb6e3dee4b87 | |
parent | Set cog load log messages to info (diff) |
Add Cog inheritance to Valenstate cog
-rw-r--r-- | bot/seasons/valentines/myvalenstate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/valentines/myvalenstate.py b/bot/seasons/valentines/myvalenstate.py index bd07f6a2..efc374d4 100644 --- a/bot/seasons/valentines/myvalenstate.py +++ b/bot/seasons/valentines/myvalenstate.py @@ -15,7 +15,7 @@ with open(Path('bot', 'resources', 'valentines', 'valenstates.json'), 'r') as fi STATES = json.load(file) -class MyValenstate: +class MyValenstate(commands.Cog): def __init__(self, bot): self.bot = bot |