diff --git a/Pipfile b/Pipfile index ee7e236..81d0451 100644 --- a/Pipfile +++ b/Pipfile @@ -20,8 +20,11 @@ grapheme = '==0.6.0' heroku3 = '==5.1.4' psycopg2-binary = '==2.9.3' redis = '==3.5.3' +# Optional Heroku deps just to make user comfortable Pillow = '*' pydub = '*' SpeechRecognition = '*' googletrans = '==4.0.0rc1' python-ffmpeg = '*' +emoji = '*' +moviepy = '*' diff --git a/hikka/modules/loader.py b/hikka/modules/loader.py index cf4f515..7382453 100755 --- a/hikka/modules/loader.py +++ b/hikka/modules/loader.py @@ -641,7 +641,7 @@ class LoaderMod(loader.Module): importlib.invalidate_caches() - return await self.load_module(utils.get_kwargs()) # Try again + return await self.load_module(**utils.get_kwargs()) # Try again except loader.LoadError as e: with contextlib.suppress(ValueError): self.allmodules.modules.remove(instance) # skipcq: PYL-E0601