From 3a53e46da4550dd750cc1dc355a9c07af35559f7 Mon Sep 17 00:00:00 2001 From: Omer Murat Yildirim Date: Wed, 17 Sep 2014 21:39:40 +0300 Subject: [PATCH] Fix some PEP8 errors --- tweepy/__init__.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tweepy/__init__.py b/tweepy/__init__.py index bf097a9..4622ae9 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -9,19 +9,13 @@ __version__ = '2.3' __author__ = 'Joshua Roesslein' __license__ = 'MIT' -from tweepy.models import Status, User, DirectMessage, Friendship, SavedSearch, SearchResults, ModelFactory, Category -from tweepy.error import TweepError from tweepy.api import API -from tweepy.cache import Cache, MemoryCache, FileCache -from tweepy.auth import OAuthHandler, AppAuthHandler -from tweepy.streaming import Stream, StreamListener -from tweepy.cursor import Cursor # Global, unauthenticated instance of API api = API() + def debug(enable=True, level=1): import httplib httplib.HTTPConnection.debuglevel = level - -- 2.25.1