Skip to content

Commit 92df032

Browse files
committed
make style
1 parent 2009619 commit 92df032

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

sqlmesh/core/linter/rules/builtin.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,8 @@ def check_model(self, model: Model) -> t.Optional[RuleViolation]:
6666
table_name = full_model_name.split(".")[-1]
6767
path = Path(model._path)
6868
return (
69-
self.violation()
70-
if (table_name != path.stem) and not model.kind.is_symbolic
71-
else None
69+
self.violation() if (table_name != path.stem) and not model.kind.is_symbolic else None
7270
)
7371

72+
7473
BUILTIN_RULES = RuleSet(subclasses(__name__, Rule, (Rule,)))

0 commit comments

Comments
 (0)