Skip to content

Commit 33d9dbf

Browse files
committed
Define full table ID upfront.
1 parent debaf6e commit 33d9dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Google BigQuery
1414
GCP_BIGQUERY_TABLE_ID: str = getenv("GCP_BIGQUERY_TABLE_ID")
1515
GCP_BIGQUERY_DATASET_ID: str = getenv("GCP_BIGQUERY_DATASET_ID")
16-
GCP_BIGQUERY_FULL_TABLE_ID = (
16+
GCP_BIGQUERY_FULL_TABLE_ID: str = (
1717
f"{GCP_PROJECT_ID}.{GCP_BIGQUERY_DATASET_ID}.{GCP_BIGQUERY_TABLE_ID}"
1818
)
1919

0 commit comments

Comments
 (0)