fix: address codeql notes and warnings (#740)

This commit is contained in:
Jens
2025-12-20 18:17:51 +01:00
committed by GitHub
parent f0ebb26e5d
commit ba9b14b71b
9 changed files with 128 additions and 103 deletions

View File

@@ -18,7 +18,7 @@ class FormatterRule(Protocol):
"""
def apply(self, tree:ast.AST, lines:List[str], path:Path) -> List[str]:
...
raise NotImplementedError
class NoSpaceAfterColonInTypeAnnotationRule(FormatterRule):