fix(lint): prefix unused params with _ to silence vulture 80% findings

This commit is contained in:
2026-05-17 20:08:54 -04:00
parent 4586e36d63
commit 3e6587e073
5 changed files with 8 additions and 8 deletions

View File

@@ -292,7 +292,7 @@ class FilesystemRuleStore(RuleStore):
async def __aexit__(
self,
exc_type: Type[BaseException] | None,
_exc_type: Type[BaseException] | None,
exc: BaseException | None,
tb: TracebackType | None,
) -> None: