Fix lint for latest pylint (#155)

diff --git a/google/auth/transport/requests.py b/google/auth/transport/requests.py
index 0c66fdd..6fc395e 100644
--- a/google/auth/transport/requests.py
+++ b/google/auth/transport/requests.py
@@ -158,6 +158,10 @@
 
     def request(self, method, url, data=None, headers=None, **kwargs):
         """Implementation of Requests' request."""
+        # pylint: disable=arguments-differ
+        # Requests has a ton of arguments to request, but only two
+        # (method, url) are required. We pass through all of the other
+        # arguments to super, so no need to exhaustively list them here.
 
         # Use a kwarg for this instead of an attribute to maintain
         # thread-safety.
diff --git a/tests/transport/test_requests.py b/tests/transport/test_requests.py
index ac2a024..8c3a423 100644
--- a/tests/transport/test_requests.py
+++ b/tests/transport/test_requests.py
@@ -55,6 +55,9 @@
         self.headers = headers or {}
 
     def send(self, request, **kwargs):
+        # pylint: disable=arguments-differ
+        # request is the only required argument here and the only argument
+        # we care about.
         self.requests.append(request)
         return self.responses.pop(0)