From 8e464e604148a6a04985ebda97670bc513f5764d Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Mon, 27 Apr 2026 13:56:16 +0200 Subject: [PATCH] fix: formatting --- scripts/lint.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/lint.py b/scripts/lint.py index 85f38233..849aa3de 100644 --- a/scripts/lint.py +++ b/scripts/lint.py @@ -221,9 +221,7 @@ class InvalidScopes(Lint): scopes = rule.meta.get("scopes") if not isinstance(scopes, dict): return False - return (scopes.get("static") == "unsupported") and ( - scopes.get("dynamic") == "unsupported" - ) + return (scopes.get("static") == "unsupported") and (scopes.get("dynamic") == "unsupported") class MissingAuthors(Lint):