File tree Expand file tree Collapse file tree
packages/bigframes/bigframes Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515from __future__ import annotations
1616
1717import asyncio
18+ import concurrent .futures
1819import dataclasses
1920import datetime
2021import threading
Original file line number Diff line number Diff line change 1919
2020from google .cloud import bigquery
2121
22- from bigframes .options import ComputeOptions
22+ from bigframes ._config import ComputeOptions
2323
2424
2525@dataclasses .dataclass (frozen = True )
@@ -63,7 +63,7 @@ class ExecutionSpec:
6363
6464 def with_bq_labels (self , labels : Mapping [str , str ]) -> ExecutionSpec :
6565 bq_config = self .bigquery_config or BqComputeOptions ()
66- return dataclasses .replace (self , bigquery_config = bq_config .add_labels (labels ))
66+ return dataclasses .replace (self , bigquery_config = bq_config .push_labels (labels ))
6767
6868 def with_compute_options (self , compute_options : ComputeOptions ) -> ExecutionSpec :
6969 """
You can’t perform that action at this time.
0 commit comments