diff options
-rw-r--r-- | bot/seasons/valentines/savethedate.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bot/seasons/valentines/savethedate.py b/bot/seasons/valentines/savethedate.py index 25631a7c..bfc4f432 100644 --- a/bot/seasons/valentines/savethedate.py +++ b/bot/seasons/valentines/savethedate.py @@ -1,7 +1,7 @@ import logging from json import load -from pathlib import Path import random +from pathlib import Path import discord from discord.ext import commands @@ -9,7 +9,8 @@ from discord.ext import commands log = logging.getLogger(__name__) -emoji = [":heart:", ":couple_with_heart:", ":gift_heart: :revolving_hearts:", ":sparkling_heart:", ":two_hearts:" ] +emoji = [":heart:", ":couple_with_heart:", ":gift_heart: :revolving_hearts:", ":sparkling_heart:", ":two_hearts:"] + class SaveTheDate: """ |