We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24fe727 commit 628d8b8Copy full SHA for 628d8b8
airflow-cloud-composer-etl-feature-train/materializers/bq_dataset.py
@@ -35,7 +35,10 @@ def __init__(
35
self.write_disposition = write_disposition
36
self.project = project
37
self.dataset = dataset
38
- self.client = bigquery.Client(project=project)
+ if project is None:
39
+ self.client = bigquery.Client()
40
+ else:
41
+ self.client = bigquery.Client(project=project)
42
self.df = df
43
44
def read_data(self) -> pd.DataFrame:
0 commit comments