import cleanups
authorKenneth Reitz <me@kennethreitz.com>
Sat, 22 Oct 2011 22:13:22 +0000 (18:13 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Sat, 22 Oct 2011 22:13:22 +0000 (18:13 -0400)
requests/api.py

index b737cfe..f44f35b 100644 (file)
@@ -11,11 +11,6 @@ This module implements the Requests API.
 
 """
 
-from . import config
-from .models import Request, Response, AuthObject
-from .status_codes import codes
-from .hooks import dispatch_hook
-from .utils import cookiejar_from_dict, header_expand
 from .sessions import session
 
 __all__ = ('request', 'get', 'head', 'post', 'patch', 'put', 'delete')
@@ -40,7 +35,6 @@ def get(url, **kwargs):
     :param **kwargs: Optional arguments that ``request`` takes.
     """
 
-
     kwargs.setdefault('allow_redirects', True)
     return request('GET', url, **kwargs)