diff options
Diffstat (limited to 'bot/exts')
| -rw-r--r-- | bot/exts/easter/save_the_planet.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/easter/save_the_planet.py b/bot/exts/easter/save_the_planet.py index 41a9e25d..811feb93 100644 --- a/bot/exts/easter/save_the_planet.py +++ b/bot/exts/easter/save_the_planet.py @@ -14,7 +14,7 @@ class SaveThePlanet(commands.Cog):          self.embed_data = []          with open(Path("bot/resources/easter/save_the_planet.json"), 'r', encoding='utf8') as f: -            self.embed_data = [embed for embed in json.load(f)] +            self.embed_data = json.load(f)      @commands.command(aliases=('savetheearth', 'saveplanet', 'saveearth'))      async def savetheplanet(self, ctx: commands.Context) -> None: | 
