Skip to content

Commit

Permalink
Format the code
Browse files Browse the repository at this point in the history
Signed-off-by: Yu Ishikawa <[email protected]>
  • Loading branch information
yu-iskw committed Nov 29, 2024
1 parent e52e651 commit 92f94fa
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions dbt/adapters/bigquery/relation_configs/_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,9 @@ def as_alter_dict(self) -> Dict[str, Any]:
SEE https://cloud.google.com/bigquery/docs/materialized-views-manage
"""
non_available_options = ["allow_non_incremental_definition"]
options = {
k: v for k, v in self.as_ddl_dict().items()
if k not in non_available_options
}
options = {k: v for k, v in self.as_ddl_dict().items() if k not in non_available_options}
return options


@classmethod
def from_dict(cls, config_dict: Dict[str, Any]) -> Self:
setting_formatters = {
Expand Down

0 comments on commit 92f94fa

Please sign in to comment.