ARG001: fix

This commit is contained in:
Jörg Thalheim
2025-08-20 21:58:33 +02:00
parent 4986fe30c3
commit 04457b1272
19 changed files with 46 additions and 54 deletions

View File

@@ -205,7 +205,7 @@ class Webview:
)
def bind(self, name: str, callback: Callable[..., Any]) -> None:
def wrapper(seq: bytes, req: bytes, arg: int) -> None:
def wrapper(seq: bytes, req: bytes, _arg: int) -> None:
args = json.loads(req.decode())
try:
result = callback(*args)