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.
This commit is contained in:
Randall Degges 2010-08-17 16:47:59 +08:00 committed by Ryan McGrath
parent fb6d549eed
commit d5b2c98fb8

View file

@ -10,15 +10,20 @@
Questions, comments? ryan@venodesigns.net 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 urlparse import urlparse
from urllib2 import HTTPError from urllib2 import HTTPError
__author__ = "Ryan McGrath <ryan@venodesigns.net>" __author__ = "Ryan McGrath <ryan@venodesigns.net>"
__version__ = "1.1" __version__ = "1.1"
"""Twython - Easy Twitter utilities in Python"""
try: try:
import simplejson import simplejson