Clean up doc strings and unused imports
diff --git a/apiclient/http.py b/apiclient/http.py
index 8f64baf..2b35c85 100644
--- a/apiclient/http.py
+++ b/apiclient/http.py
@@ -23,7 +23,7 @@
"""
def __init__(self, http, postproc, uri,
- method="GET",
+ method='GET',
body=None,
headers=None,
methodId=None):
@@ -139,7 +139,7 @@
"""
self.responses = responses
- def __call__(self, http, postproc, uri, method="GET", body=None,
+ def __call__(self, http, postproc, uri, method='GET', body=None,
headers=None, methodId=None):
"""Implements the callable interface that discovery.build() expects
of requestBuilder, which is to build an object compatible with
@@ -169,7 +169,7 @@
self.headers = headers
def request(self, uri,
- method="GET",
+ method='GET',
body=None,
headers=None,
redirections=1,