Skip to content

Commit

Permalink
undo field declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Mar 18, 2024
1 parent 919f24b commit 0245f25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airbyte/caches/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
class BigQueryCache(CacheBase):
"""The BigQuery cache implementation."""

project_name: str = Field(...)
project_name: str
"""The name of the project to use. In BigQuery, this is equivalent to the database name."""

dataset_name: str = Field("airbyte_raw")
dataset_name: str = "airbyte_raw"
"""The name of the dataset to use. In BigQuery, this is equivalent to the schema name."""

credentials_path: str
Expand Down

0 comments on commit 0245f25

Please sign in to comment.