We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10ef373 commit 80e5ebaCopy full SHA for 80e5eba
mocket/utils.py
@@ -33,7 +33,7 @@ def hexload(string: str) -> bytes:
33
def get_mocketize(wrapper_: Callable) -> Callable:
34
# trying to support different versions of `decorator`
35
with contextlib.suppress(TypeError):
36
- return decorator.decorator(wrapper_, kwsyntax=True) # type: ignore[call-arg]
+ return decorator.decorator(wrapper_, kwsyntax=True) # type: ignore[call-arg,unused-ignore]
37
return decorator.decorator(wrapper_)
38
39
0 commit comments