Skip to content

Commit 80e5eba

Browse files
committed
Revert.
1 parent 10ef373 commit 80e5eba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mocket/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def hexload(string: str) -> bytes:
3333
def get_mocketize(wrapper_: Callable) -> Callable:
3434
# trying to support different versions of `decorator`
3535
with contextlib.suppress(TypeError):
36-
return decorator.decorator(wrapper_, kwsyntax=True) # type: ignore[call-arg]
36+
return decorator.decorator(wrapper_, kwsyntax=True) # type: ignore[call-arg,unused-ignore]
3737
return decorator.decorator(wrapper_)
3838

3939

0 commit comments

Comments
 (0)