Skip to content

Commit 704595a

Browse files
committed
[ruff]
1 parent 239e917 commit 704595a

File tree

1 file changed

+1
-4
lines changed
  • src/strict_syntax_health

1 file changed

+1
-4
lines changed

src/strict_syntax_health/cli.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -916,10 +916,7 @@ def run_pipeline_lint(pipelines: list[dict], no_cache: bool = False) -> list[dic
916916
and cached.get("prints_help") is None
917917
)
918918
# Check if we need to run the versions-mix scan for cached entries that predate it
919-
needs_versions_mix = (
920-
cached.get("has_versions_mix") is None
921-
and not cached.get("parse_error", False)
922-
)
919+
needs_versions_mix = cached.get("has_versions_mix") is None and not cached.get("parse_error", False)
923920

924921
if (
925922
remote_commit

0 commit comments

Comments
 (0)