diff --git a/catalog_linter.py b/catalog_linter.py index 9ba6689..6925cf8 100755 --- a/catalog_linter.py +++ b/catalog_linter.py @@ -40,7 +40,7 @@ def validate_schema() -> Generator[str, None, None]: def check_app(app: str, infos: Dict[str, Any]) -> Generator[Tuple[str, bool], None, None]: if "state" not in infos: - yield "state is missing" + yield "state is missing", True return if infos["state"] != "working":