diff options
author | 2021-09-23 21:42:24 -0400 | |
---|---|---|
committer | 2021-10-05 16:42:51 +0100 | |
commit | 9699e3a62d03d27acaac6e5376c2327cb8abf739 (patch) | |
tree | c58c408d5e2d0e97223d0f7c35d3be3038189024 /bot/exts/utilities | |
parent | chore: remove single-use constant for json path (diff) |
chore: set thumbnail image to 80x80
Diffstat (limited to 'bot/exts/utilities')
-rw-r--r-- | bot/exts/utilities/color.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/color.py b/bot/exts/utilities/color.py index ac7b5fc6..57510488 100644 --- a/bot/exts/utilities/color.py +++ b/bot/exts/utilities/color.py @@ -171,7 +171,7 @@ class Color(commands.Cog): Assumes that color is an rgb tuple. """ - thumbnail = Image.new("RGB", (100, 100), color=color) + thumbnail = Image.new("RGB", (80, 80), color=color) bufferedio = BytesIO() thumbnail.save(bufferedio, format="PNG") bufferedio.seek(0) |