We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More unused imports (but different from the ones in #169).
If the answer is "It's hard to get rid of these" I can live with that, but I would still like to track this in an issue.
google/cloud/billing_v1/services/cloud_catalog/client.py:19:1: F401 'typing.Iterable' imported but unused google/cloud/billing_v1/services/cloud_catalog/client.py:19:1: F401 'typing.Iterator' imported but unused google/cloud/billing_v1/services/cloud_catalog/client.py:23:1: F401 'google.api_core.exceptions' imported but unused google/cloud/billing_v1/services/cloud_billing/client.py:19:1: F401 'typing.Iterable' imported but unused google/cloud/billing_v1/services/cloud_billing/client.py:19:1: F401 'typing.Iterator' imported but unused google/cloud/billing_v1/services/cloud_billing/client.py:23:1: F401 'google.api_core.exceptions' imported but unused tests/unit/billing_v1/test_cloud_catalog.py:21:1: F401 'math' imported but unused tests/unit/billing_v1/test_cloud_billing.py:21:1: F401 'math' imported but unused
The text was updated successfully, but these errors were encountered:
Mostly fixed by #329 Unused 'math' import is still present in generated tests. Unused 'exceptions' import is still present in generated client.
Sorry, something went wrong.
For Cloud Spanner, tests/unit/gapic/spanner_v1/test_spanner.py contains the following unused imports:
tests/unit/gapic/spanner_v1/test_spanner.py
from google.cloud.spanner_v1.types import type from google.cloud.spanner_v1.types import type as gs_type
The first import is causing test breakages as it clashes with the type() builtin.
Fixed by #595
software-dov
No branches or pull requests
More unused imports (but different from the ones in #169).
If the answer is "It's hard to get rid of these" I can live with that, but I would still like to track this in an issue.
The text was updated successfully, but these errors were encountered: