From 056171891722558a6a6a7a24f657d9ce1ec8b50d Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Sun, 24 Feb 2019 23:08:23 +0100 Subject: [PATCH] Import utils.py and graphql.py directly into the global module --- fbchat/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fbchat/__init__.py b/fbchat/__init__.py index 91bacb4..3bdd86f 100644 --- a/fbchat/__init__.py +++ b/fbchat/__init__.py @@ -4,11 +4,13 @@ :copyright: (c) 2015 - 2019 by Taehoon Kim :license: BSD 3-Clause, see LICENSE for more details. """ - from __future__ import unicode_literals +# These imports are far too general, but they're needed for backwards compatbility. +from .utils import * +from .graphql import * from .models import * -from .client import * +from ._client import Client __title__ = "fbchat" __version__ = "1.6.3"