Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
from google.api_core.bidi_async import AsyncBidiRpc

from google.cloud import _storage_v2
from google.cloud.storage import Blob
from google.cloud.storage import _grpc_conversions
from google.cloud.storage import Blob, _grpc_conversions
from google.cloud.storage.asyncio import _utils
from google.cloud.storage.asyncio.async_abstract_object_stream import (
_AsyncAbstractObjectStream,
Expand Down
5 changes: 2 additions & 3 deletions packages/google-cloud-storage/tests/system/test_zonal.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@
import pytest
from google.api_core.exceptions import FailedPrecondition, NotFound, OutOfRange

# current library imports
from google.cloud import kms
from google.cloud.storage.asyncio.async_appendable_object_writer import (
_DEFAULT_FLUSH_INTERVAL_BYTES,
AsyncAppendableObjectWriter,
)

# current library imports
from google.cloud import kms
from google.cloud.storage.asyncio.async_grpc_client import AsyncGrpcClient
from google.cloud.storage.asyncio.async_multi_range_downloader import (
AsyncMultiRangeDownloader,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import io
import unittest

from google.api_core import exceptions
import google_crc32c
from google.api_core import exceptions

from google.cloud import _storage_v2 as storage_v2
from google.cloud._storage_v2.types.storage import BidiReadObjectRedirectedError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
import pytest
from google.api_core import exceptions
from google.rpc import status_pb2
from google.cloud.storage import Blob

from google.cloud._storage_v2.types import storage as storage_type
from google.cloud._storage_v2.types.storage import BidiWriteObjectRedirectedError
from google.cloud.storage import Blob
from google.cloud.storage.asyncio.async_appendable_object_writer import (
_DEFAULT_FLUSH_INTERVAL_BYTES,
_MAX_CHUNK_SIZE_BYTES,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
from unittest import mock
from unittest.mock import AsyncMock

import google_crc32c
import pytest
from google.api_core import exceptions
import google_crc32c

from google.cloud import _storage_v2
from google.cloud.storage.asyncio import async_read_object_stream
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
import pytest

from google.cloud import _storage_v2
from google.cloud.storage import Blob
from google.cloud.storage import Bucket
from google.cloud.storage import Blob, Bucket
from google.cloud.storage.asyncio.async_write_object_stream import (
_AsyncWriteObjectStream,
)
Expand Down
Loading