From 4575ffece5702d6da75d7ea2b0c1c3f690ac69ff Mon Sep 17 00:00:00 2001 From: LProcopi15 Date: Thu, 16 Jan 2025 11:49:32 -0800 Subject: [PATCH] resolve linting error (f-string nested double quotes) --- dbt/adapters/snowflake/relation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbt/adapters/snowflake/relation.py b/dbt/adapters/snowflake/relation.py index b80c4d1e1..f3558cd0c 100644 --- a/dbt/adapters/snowflake/relation.py +++ b/dbt/adapters/snowflake/relation.py @@ -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}"