From 087d7dae161e7e00f28f2b698cd0eb22bfbe252f Mon Sep 17 00:00:00 2001 From: LProcopi15 Date: Thu, 16 Jan 2025 12:20:15 -0800 Subject: [PATCH] resolve linting error (move to new line) --- dbt/adapters/snowflake/relation.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dbt/adapters/snowflake/relation.py b/dbt/adapters/snowflake/relation.py index f3558cd0c..f3ee3e510 100644 --- a/dbt/adapters/snowflake/relation.py +++ b/dbt/adapters/snowflake/relation.py @@ -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}"