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

Commit 39ae646

Browse files
committed
linting
1 parent 0afdbf2 commit 39ae646

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,9 @@ def __init__(
184184
"""
185185
if "pool_size" in kwargs:
186186
warnings.warn("pool_size no longer supported")
187-
187+
188188
# Private argument, for internal use only
189-
self._is_legacy_client = bool(
190-
kwargs.get("_is_legacy_client", False)
191-
)
189+
self._is_legacy_client = bool(kwargs.get("_is_legacy_client", False))
192190

193191
# set up client info headers for veneer library. _client_info is for internal use only,
194192
# for the legacy client shim.

tests/unit/v2_client/test_table.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ def test_table_constructor_defaults():
183183
assert table.mutation_timeout is None
184184
assert table._app_profile_id is None
185185
assert table._table_impl == _veneer_data_client.get_table.return_value
186-
_veneer_data_client.get_table.assert_called_once_with(INSTANCE_ID, TABLE_ID, app_profile_id=None)
186+
_veneer_data_client.get_table.assert_called_once_with(
187+
INSTANCE_ID, TABLE_ID, app_profile_id=None
188+
)
187189

188190

189191
def test_table_constructor_explicit():

0 commit comments

Comments
 (0)