aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris <[email protected]>2021-02-22 18:35:10 +0000
committerGravatar Chris <[email protected]>2021-02-22 18:35:10 +0000
commit6e7521c74e9c34159d8ba4873f09f5277f47908e (patch)
tree0db6eea07d14d06560db4e3b3a1c818c89024044
parentDon't return discord.Message from ctx.send calls (diff)
Improve doc string.
-rw-r--r--bot/exts/evergreen/profile_pic_modification/_effects.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bot/exts/evergreen/profile_pic_modification/_effects.py b/bot/exts/evergreen/profile_pic_modification/_effects.py
index a290ed3d..1179100c 100644
--- a/bot/exts/evergreen/profile_pic_modification/_effects.py
+++ b/bot/exts/evergreen/profile_pic_modification/_effects.py
@@ -13,7 +13,11 @@ EASTER_COLOURS = [
class PfpEffects():
- """Implements various image effects."""
+ """
+ Implements various image effects.
+
+ All of these methods are blocking, so should be ran in threads.
+ """
@staticmethod
def apply_effect(image_bytes: bytes, effect: t.Callable, *args) -> discord.File: