diff options
| author | 2021-02-22 18:35:10 +0000 | |
|---|---|---|
| committer | 2021-02-22 18:35:10 +0000 | |
| commit | 6e7521c74e9c34159d8ba4873f09f5277f47908e (patch) | |
| tree | 0db6eea07d14d06560db4e3b3a1c818c89024044 /bot | |
| parent | Don't return discord.Message from ctx.send calls (diff) | |
Improve doc string.
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/exts/evergreen/profile_pic_modification/_effects.py | 6 | 
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: | 
