in scripts/metric_reporter/reporter/base_reporter.py [0:0]
def update_table(self, client: Client, project_id: str, dataset_name: str) -> None:
"""Update the BigQuery table.
Args:
client (Client): The client to interact with BigQuery.
project_id (str): The BigQuery project ID.
dataset_name (str): The BigQuery dataset name.
Raises:
NotImplementedError: If the method is not implemented by a subclass.
"""
raise NotImplementedError("Subclasses must implement the `update_table` method.")