diff options
| author | 2020-03-11 17:47:58 +0200 | |
|---|---|---|
| committer | 2020-03-11 17:47:58 +0200 | |
| commit | 570cb893a38d8da7f4445539de87b0579e4c934c (patch) | |
| tree | 84d6bcd3ce83d86d39979616cc6655d632d2ac96 /bot/seasons/evergreen/snakes/snakes_cog.py | |
| parent | (Space Cog): Clean comments (diff) | |
| parent | Merge branch 'master' into space-cog (diff) | |
Merge remote-tracking branch 'origin/space-cog' into space-cog
Diffstat (limited to 'bot/seasons/evergreen/snakes/snakes_cog.py')
| -rw-r--r-- | bot/seasons/evergreen/snakes/snakes_cog.py | 4 |
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') |