aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/valentines/lovecalculator.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/seasons/valentines/lovecalculator.py')
-rw-r--r--bot/seasons/valentines/lovecalculator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/valentines/lovecalculator.py b/bot/seasons/valentines/lovecalculator.py
index 4df33b93..655430f5 100644
--- a/bot/seasons/valentines/lovecalculator.py
+++ b/bot/seasons/valentines/lovecalculator.py
@@ -9,7 +9,7 @@ from typing import Union
import discord
from discord import Member
from discord.ext import commands
-from discord.ext.commands import BadArgument, clean_content
+from discord.ext.commands import BadArgument, Cog, clean_content
from bot.constants import Roles
@@ -20,7 +20,7 @@ with Path('bot', 'resources', 'valentines', 'love_matches.json').open() as file:
LOVE_DATA = sorted((int(key), value) for key, value in LOVE_DATA.items())
-class LoveCalculator:
+class LoveCalculator(Cog):
"""
A cog for calculating the love between two people
"""