From d91a7ea9e386259019f987afbcab200792c0cfd6 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Sun, 23 Jun 2019 17:44:03 +0200 Subject: [PATCH] Remove internal stuff from _graphql in __init__.py --- fbchat/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fbchat/__init__.py b/fbchat/__init__.py index cc95ada..1a1ba87 100644 --- a/fbchat/__init__.py +++ b/fbchat/__init__.py @@ -9,9 +9,8 @@ from __future__ import unicode_literals # These imports are far too general, but they're needed for backwards compatbility. from .models import * -from ._graphql import graphql_queries_to_json, graphql_response_to_json, GraphQL from ._client import Client -from ._util import log # TODO: Remove this +from ._util import log # TODO: Remove this (from examples too) __title__ = "fbchat" __version__ = "1.6.5"