Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit fcb062e

Browse files
committed
fixed lint
1 parent 883ceab commit fcb062e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

google/cloud/bigtable/data/_async/_swappable_channel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ class AsyncSwappableChannel(_AsyncWrappedChannel):
102102
- channel_fn: a nullary function that returns a new channel instance.
103103
It should be a partial with all channel configuration arguments built-in
104104
"""
105+
105106
def __init__(self, channel_fn: Callable[[], Channel]):
106107
self._channel_fn = channel_fn
107108
self._channel = channel_fn()

tests/system/data/test_system_autogen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
from google.cloud.environment_vars import BIGTABLE_EMULATOR
2727
from google.type import date_pb2
2828
from google.cloud.bigtable.data._cross_sync import CrossSync
29+
from . import TEST_FAMILY, TEST_FAMILY_2, TEST_AGGREGATE_FAMILY
2930
from google.cloud.bigtable_v2.services.bigtable.transports.grpc import (
3031
_LoggingClientInterceptor as GapicInterceptor,
3132
)
32-
from . import TEST_FAMILY, TEST_FAMILY_2, TEST_AGGREGATE_FAMILY
3333

3434
TARGETS = ["table"]
3535
if not os.environ.get(BIGTABLE_EMULATOR):

0 commit comments

Comments
 (0)