diff options
author | 2019-02-07 16:10:33 +0530 | |
---|---|---|
committer | 2019-02-07 16:10:33 +0530 | |
commit | 947735bea2c0f897c20aaeec76e0c0b37925974a (patch) | |
tree | ad9710747b4c065ba7fc01ade88f526fe1036c65 | |
parent | I have finished working on the issue #101 SaveTheDate command.i have added ar... (diff) |
fixed linter issues
-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: """ |