diff options
| -rw-r--r-- | bot/exts/halloween/candy_collection.py | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/bot/exts/halloween/candy_collection.py b/bot/exts/halloween/candy_collection.py index e1602137..4909b8df 100644 --- a/bot/exts/halloween/candy_collection.py +++ b/bot/exts/halloween/candy_collection.py @@ -37,13 +37,11 @@ class CandyCollection(commands.Cog):      def __init__(self, bot: commands.Bot):          self.bot = bot -          self.json_file = make_persistent(Path("bot", "resources", "halloween", "candy_collection.json"))          with self.json_file.open() as fp:              candy_data = json.load(fp) -        # The rank data          self.candy_records = candy_data.get("records", dict())          # Message ID where bot added the candies/skulls | 
