diff --git a/fbchat/_client.py b/fbchat/_client.py index 8726f68..a4a363d 100644 --- a/fbchat/_client.py +++ b/fbchat/_client.py @@ -8,7 +8,7 @@ from random import choice from bs4 import BeautifulSoup as bs from mimetypes import guess_type from collections import OrderedDict -from .utils import * +from ._util import * from .models import * from .graphql import * import time diff --git a/fbchat/utils.py b/fbchat/_util.py similarity index 100% rename from fbchat/utils.py rename to fbchat/_util.py diff --git a/fbchat/graphql.py b/fbchat/graphql.py index a6a2896..4bf8cab 100644 --- a/fbchat/graphql.py +++ b/fbchat/graphql.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals import json import re from .models import * -from .utils import * +from ._util import * # Shameless copy from https://stackoverflow.com/a/8730674 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL