Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 33d9dbf

Browse files
committedFeb 17, 2021
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

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.