Unbreak pytype by silencing a false positive. (#8106)

diff --git a/google/api_core/general_helpers.py b/google/api_core/general_helpers.py
index 5661663..d2d0c44 100644
--- a/google/api_core/general_helpers.py
+++ b/google/api_core/general_helpers.py
@@ -26,7 +26,8 @@
 
 def wraps(wrapped):
     """A functools.wraps helper that handles partial objects on Python 2."""
-    if isinstance(wrapped, functools.partial):
+    # https://github.com/google/pytype/issues/322
+    if isinstance(wrapped, functools.partial):  # pytype: disable=wrong-arg-types
         return six.wraps(wrapped, assigned=_PARTIAL_VALID_ASSIGNMENTS)
     else:
         return six.wraps(wrapped)