Added in support for developer keys
diff --git a/apiclient/http.py b/apiclient/http.py
index 16591fb..25d646e 100644
--- a/apiclient/http.py
+++ b/apiclient/http.py
@@ -12,7 +12,8 @@
   """Encapsulate an HTTP request.
   """
 
-  def __init__(self, http, uri, method="GET", body=None, headers=None, postproc=None):
+  def __init__(self, http, uri, method="GET", body=None, headers=None,
+               postproc=None):
     self.uri = uri
     self.method = method
     self.body = body