We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 761474b commit 72d2886Copy full SHA for 72d2886
sqlmesh/core/linter/rules/builtin.py
@@ -116,8 +116,8 @@ class NoUnregisteredExternalModels(Rule):
116
def check_model(self, model: Model) -> t.Optional[RuleViolation]:
117
depends_on = model.depends_on
118
119
- # Ignore external models themselves, because either they are registered
120
- # if they are not, they will be caught as referenced in another model.
+ # Ignore external models themselves, because either they are registered,
+ # and if they are not, they will be caught as referenced in another model.
121
if isinstance(model, ExternalModel):
122
return None
123
0 commit comments