We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc13e3 commit 953fffbCopy full SHA for 953fffb
google/cloud/client/__init__.py
@@ -34,8 +34,8 @@
34
import google.auth.api_key
35
36
HAS_GOOGLE_AUTH_API_KEY = True
37
-except ImportError: # pragma: no cover
38
- HAS_GOOGLE_AUTH_API_KEY = False # pragma: no cover
+except ImportError: # pragma: NO COVER
+ HAS_GOOGLE_AUTH_API_KEY = False # pragma: NO COVER
39
# TODO: Investigate adding a test for google.auth.api_key ImportError (https://github.com/googleapis/python-cloud-core/issues/334)
40
41
google/cloud/obsolete/__init__.py
@@ -14,9 +14,8 @@
14
15
"""Helpers for deprecated code and modules."""
16
17
-import sys
18
-import warnings
19
import importlib.metadata as metadata
+import warnings
20
21
22
def complain(distribution_name):
0 commit comments