From 6a18d4c4cc107115dd10f43fef22f341c9e44149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Thu, 10 Oct 2024 20:09:50 +0200 Subject: [PATCH] Fix a stylistic inconsistency --- frida/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frida/core.py b/frida/core.py index a536646..26a4da6 100644 --- a/frida/core.py +++ b/frida/core.py @@ -80,6 +80,7 @@ def _filter_missing_kwargs(d: MutableMapping[Any, Any]) -> None: R = TypeVar("R") P = ParamSpec("P") + def cancellable(f: Callable[P, R]) -> Callable[P, R]: @functools.wraps(f) def wrapper(*args: P.args, **kwargs: P.kwargs) -> R: