Skip to content

Commit

Permalink
resolve linting error (move to new line)
Browse files Browse the repository at this point in the history
  • Loading branch information
LProcopi15 committed Jan 16, 2025
1 parent 4575ffe commit 087d7da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dbt/adapters/snowflake/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ def get_ddl_prefix_for_alter(self) -> str:

def get_iceberg_ddl_options(self, config: RelationConfig) -> str:
# If the base_location_root config is supplied, overwrite the default value ("_dbt/")
base_location: str = f"{config.get('base_location_root', '_dbt')}/{self.schema}/{self.name}"
base_location: str = (
f"{config.get('base_location_root', '_dbt')}/{self.schema}/{self.name}"
)

if subpath := config.get("base_location_subpath"):
base_location += f"/{subpath}"
Expand Down

0 comments on commit 087d7da

Please sign in to comment.