From d5b2c98fb880961d382118eaf9f1c4d837c444ce Mon Sep 17 00:00:00 2001 From: Randall Degges Date: Tue, 17 Aug 2010 16:47:59 +0800 Subject: [PATCH] PEP-8'ing imports. Also removing useless docstring. Only the *first* docstring defined in a source file will be associated with that module's __doc__ string. So I'm removing the second one that was there as it is unnecessary. --- twython/core.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/twython/core.py b/twython/core.py index d380fbd..921e461 100644 --- a/twython/core.py +++ b/twython/core.py @@ -10,15 +10,20 @@ Questions, comments? ryan@venodesigns.net """ -import httplib, urllib, urllib2, mimetypes, mimetools + +import httplib +import urllib +import urllib2 +import mimetypes +import mimetools from urlparse import urlparse from urllib2 import HTTPError + __author__ = "Ryan McGrath " __version__ = "1.1" -"""Twython - Easy Twitter utilities in Python""" try: import simplejson