Skip to content

Commit

Permalink
resolve linting error (f-string nested double quotes)
Browse files Browse the repository at this point in the history
  • Loading branch information
LProcopi15 committed Jan 16, 2025
1 parent c4ffbae commit 4575ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/snowflake/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ 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 4575ffe

Please sign in to comment.