From 69d0136221af5cfcc1fb37b309ede7a7bb704545 Mon Sep 17 00:00:00 2001 From: CrisMystik <62919067+CrisMystik@users.noreply.github.com> Date: Sat, 13 Feb 2021 19:02:35 +0100 Subject: [PATCH] Now custom filters can be imported directly from BotBase.methods --- BotBase/methods/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BotBase/methods/__init__.py b/BotBase/methods/__init__.py index 47c7d56..6918e27 100644 --- a/BotBase/methods/__init__.py +++ b/BotBase/methods/__init__.py @@ -1,2 +1,3 @@ __version__ = (2, 1, 0) -from ._wrapper import MethodWrapper +from .custom_filters import * +from .wrapper import MethodWrapper