aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris <[email protected]>2021-03-10 19:34:00 +0000
committerGravatar Chris <[email protected]>2021-03-10 19:34:00 +0000
commit33141d9fa9d3ffe2120fc4cf2fcba824d047fe7e (patch)
treeb0c6d3f24ee8ed2890b7f3612077dda99e6b16ce
parentImprove docstring and split line for readibility (diff)
Remove double assignment of a variable
-rw-r--r--bot/exts/evergreen/profile_pic_modification/_effects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/profile_pic_modification/_effects.py b/bot/exts/evergreen/profile_pic_modification/_effects.py
index 3f4e796d..ef0a3f37 100644
--- a/bot/exts/evergreen/profile_pic_modification/_effects.py
+++ b/bot/exts/evergreen/profile_pic_modification/_effects.py
@@ -109,7 +109,7 @@ class PfpEffects:
))
overlay_image = overlay_image.convert("RGBA")
else:
- overlay_image = overlay_image = Image.open(Path("bot/resources/easter/chocolate_bunny.png"))
+ overlay_image = Image.open(Path("bot/resources/easter/chocolate_bunny.png"))
alpha = image.getchannel("A").getdata()
image = image.convert("RGB")