Skip to content

Commit 05d486a

Browse files
committed
remove unused import
1 parent bd36991 commit 05d486a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

google/cloud/storage/_experimental/async_grpc_client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
"""An async client for interacting with Google Cloud Storage using the gRPC API."""
1616

1717
from google.cloud import storage_v2
18-
from google.api_core import client_options as client_options_lib
19-
2018

2119
class AsyncGrpcClient:
2220
"""An asynchronous client for interacting with Google Cloud Storage using the gRPC API.

tests/unit/test_async_grpc_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
class TestAsyncGrpcClient(unittest.TestCase):
21-
@mock.patch("google.cloud.storage_v2._experimental.StorageAsyncClient")
21+
@mock.patch("google.cloud.storage_v2.StorageAsyncClient")
2222
def test_constructor_defaults_to_cloudpath(self, mock_async_storage_client):
2323
from google.cloud.storage._experimental import async_grpc_client
2424

@@ -32,7 +32,7 @@ def test_constructor_defaults_to_cloudpath(self, mock_async_storage_client):
3232
credentials=mock_creds, attempt_direct_path=False
3333
)
3434

35-
@mock.patch("google.cloud.storage_v2._experimental.StorageAsyncClient")
35+
@mock.patch("google.cloud.storage_v2.StorageAsyncClient")
3636
def test_constructor_respects_directpath_true(self, mock_async_storage_client):
3737
from google.cloud.storage._experimental import async_grpc_client
3838

0 commit comments

Comments
 (0)