aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/evergreen/snakes/snakes_cog.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/seasons/evergreen/snakes/snakes_cog.py')
-rw-r--r--bot/seasons/evergreen/snakes/snakes_cog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/evergreen/snakes/snakes_cog.py b/bot/seasons/evergreen/snakes/snakes_cog.py
index 1ed38f86..09f5e250 100644
--- a/bot/seasons/evergreen/snakes/snakes_cog.py
+++ b/bot/seasons/evergreen/snakes/snakes_cog.py
@@ -617,8 +617,8 @@ class Snakes(Cog):
text_color=text_color,
bg_color=bg_color
)
- png_bytesIO = utils.frame_to_png_bytes(image_frame)
- file = File(png_bytesIO, filename='snek.png')
+ png_bytes = utils.frame_to_png_bytes(image_frame)
+ file = File(png_bytes, filename='snek.png')
await ctx.send(file=file)
@snakes_group.command(name='get')