Skip to content

Commit b204237

Browse files
committed
Add types-requests test dependency
1 parent b7fadfe commit b204237

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

mocket/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def hexload(string: str) -> bytes:
5555
def get_mocketize(wrapper_: Callable) -> MocketizeDecorator:
5656
# trying to support different versions of `decorator`
5757
with contextlib.suppress(TypeError):
58-
return decorator.decorator(wrapper_, kwsyntax=True) # type: ignore[return-value, call-arg]
58+
return decorator.decorator(wrapper_, kwsyntax=True) # type: ignore[return-value, call-arg, unused-ignore]
5959
return decorator.decorator(wrapper_) # type: ignore[return-value]
6060

6161

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ test = [
5757
"wait-for-it",
5858
"mypy",
5959
"types-decorator",
60+
"types-requests",
6061
]
6162
speedups = [
6263
"xxhash;platform_python_implementation=='CPython'",

0 commit comments

Comments
 (0)