Skip to content

Commit db0e411

Browse files
committed
fix lint
1 parent 5223986 commit db0e411

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

dbt/adapters/clickhouse/relation.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,11 @@ def get_on_cluster(
8181
cls: Type[Self], cluster: str = '', materialized: str = '', engine: str = ''
8282
) -> bool:
8383
if cluster.strip():
84-
return materialized in ('view', 'dictionary') or \
85-
'distributed' in materialized or \
86-
'Replicated' in engine
84+
return (
85+
materialized in ('view', 'dictionary')
86+
or 'distributed' in materialized
87+
or 'Replicated' in engine
88+
)
8789

8890
else:
8991
return False

0 commit comments

Comments
 (0)