From a2814d16c34cf4c34be777bbfb8ef1c666f1e129 Mon Sep 17 00:00:00 2001 From: Fortunate-MAN Date: Sat, 23 Sep 2017 08:30:53 +0530 Subject: [PATCH] PyPi restructure complete --- Source/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Source/__init__.py b/Source/__init__.py index 992bd07..9237a07 100644 --- a/Source/__init__.py +++ b/Source/__init__.py @@ -1,3 +1,10 @@ +import sys +from . import PrivilegedChatUser +from . import PrivilegeType + +sys.modules['PrivilegedChatUser'] = PrivilegedChatUser +sys.modules['PrivilegeType'] = PrivilegeType + from .Bot import Bot from .BackgroundTask import BackgroundTask from .BackgroundTaskManager import BackgroundTaskManager @@ -12,3 +19,6 @@ from .PrivilegeType import PrivilegeType from .PrivilegedChatUser import PrivilegedChatUser from . import Utilities + + +