diff options
author | 2021-03-06 12:13:22 +0000 | |
---|---|---|
committer | 2021-03-06 12:13:22 +0000 | |
commit | 67db0d13d35cda2fcaa7d3bb20e22b38bb264487 (patch) | |
tree | 0f4c2fb8ee2a0cde905a0c004d03052913b0e1b7 | |
parent | Improve readibility of code, and fix grammar issues. (diff) |
Convert method to static as it doesn't use class attributes.
-rw-r--r-- | bot/exts/evergreen/profile_pic_modification/pfp_modify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/profile_pic_modification/pfp_modify.py b/bot/exts/evergreen/profile_pic_modification/pfp_modify.py index 1d5b7208..45a41e67 100644 --- a/bot/exts/evergreen/profile_pic_modification/pfp_modify.py +++ b/bot/exts/evergreen/profile_pic_modification/pfp_modify.py @@ -112,8 +112,8 @@ class PfpModify(commands.Cog): await ctx.send(file=file, embed=embed) + @staticmethod async def send_pride_image( - self, ctx: commands.Context, image_bytes: bytes, pixels: int, |