Skip to content

Commit

Permalink
regnerated sync files
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sanche committed Oct 31, 2024
1 parent 8a2f3ed commit 26eeb0c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions google/cloud/bigtable/data/_sync_autogen/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
from google.cloud.bigtable.data._helpers import _get_retryable_errors
from google.cloud.bigtable.data._helpers import _get_timeouts
from google.cloud.bigtable.data._helpers import _attempt_timeout_generator
from google.cloud.bigtable.data._helpers import _MB_SIZE
from google.cloud.bigtable.data.mutations import Mutation, RowMutationEntry
from google.cloud.bigtable.data.read_modify_write_rules import ReadModifyWriteRule
from google.cloud.bigtable.data.row_filters import RowFilter
Expand All @@ -71,7 +70,10 @@
from google.cloud.bigtable_v2.services.bigtable.transports.pooled_grpc import (
PooledBigtableGrpcTransport as PooledTransportType,
)
from google.cloud.bigtable.data._sync_autogen.mutations_batcher import MutationsBatcher
from google.cloud.bigtable.data._sync_autogen.mutations_batcher import (
MutationsBatcher,
_MB_SIZE,
)
from google.cloud.bigtable.data.execute_query._sync_autogen.execute_query_iterator import (
ExecuteQueryIterator,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
from google.cloud.bigtable.data._helpers import _get_retryable_errors
from google.cloud.bigtable.data._helpers import _get_timeouts
from google.cloud.bigtable.data._helpers import TABLE_DEFAULT
from google.cloud.bigtable.data._helpers import _MB_SIZE
from google.cloud.bigtable.data.mutations import _MUTATE_ROWS_REQUEST_MUTATION_LIMIT
from google.cloud.bigtable.data.mutations import Mutation
from google.cloud.bigtable.data._cross_sync import CrossSync

if TYPE_CHECKING:
from google.cloud.bigtable.data.mutations import RowMutationEntry
from google.cloud.bigtable.data._sync_autogen.client import Table as TableType
_MB_SIZE = 1024 * 1024


@CrossSync._Sync_Impl.add_mapping_decorator("_FlowControl")
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/data/_sync_autogen/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2734,7 +2734,7 @@ def __next__(self):
raise value
return value

async def __anext__(self):
def __anext__(self):
return self.__next__()

return MockStream(sample_list)
Expand Down

0 comments on commit 26eeb0c

Please sign in to comment.