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

Commit dd7453b

Browse files
committed
removed unneeded kwargs
1 parent ee72ae9 commit dd7453b

3 files changed

Lines changed: 1 addition & 12 deletions

File tree

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -973,10 +973,6 @@ def __init__(
973973

974974
self._metrics = BigtableClientSideMetricsController(
975975
handlers=[],
976-
project_id=self.client.project,
977-
instance_id=instance_id,
978-
table_id=table_id,
979-
app_profile_id=app_profile_id,
980976
)
981977

982978
try:

google/cloud/bigtable/data/_metrics/metrics_controller.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class BigtableClientSideMetricsController:
2929
def __init__(
3030
self,
3131
handlers: list[MetricsHandler] | None = None,
32-
**kwargs,
3332
):
3433
"""
3534
Initializes the metrics controller.

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -758,13 +758,7 @@ def __init__(
758758
self.default_retryable_errors: Sequence[type[Exception]] = (
759759
default_retryable_errors or ()
760760
)
761-
self._metrics = BigtableClientSideMetricsController(
762-
handlers=[],
763-
project_id=self.client.project,
764-
instance_id=instance_id,
765-
table_id=table_id,
766-
app_profile_id=app_profile_id,
767-
)
761+
self._metrics = BigtableClientSideMetricsController(handlers=[])
768762
try:
769763
self._register_instance_future = CrossSync._Sync_Impl.create_task(
770764
self.client._register_instance,

0 commit comments

Comments
 (0)