aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: