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:
parent
fb6d549eed
commit
d5b2c98fb8
1 changed files with 7 additions and 2 deletions
|
|
@ -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 <ryan@venodesigns.net>"
|
||||
__version__ = "1.1"
|
||||
|
||||
"""Twython - Easy Twitter utilities in Python"""
|
||||
|
||||
try:
|
||||
import simplejson
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue