File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -61,11 +61,11 @@ def _get_responses_method(method: str) -> str:
61
61
matchers : List [Any ] = []
62
62
if fixture .get ('match_json_params' ):
63
63
matchers .append (
64
- responses .json_params_matcher (fixture ['match_json_params' ])
64
+ responses .json_params_matcher (fixture ['match_json_params' ]) # type: ignore
65
65
)
66
66
if fixture .get ('match_urlencoded_params' ):
67
67
matchers .append (
68
- responses .urlencoded_params_matcher (
68
+ responses .urlencoded_params_matcher ( # type: ignore
69
69
fixture ['match_urlencoded_params' ]
70
70
)
71
71
)
Original file line number Diff line number Diff line change 12
12
pytest
13
13
flake8
14
14
responses
15
+ types-requests
15
16
commands =
16
17
pytest tests {posargs}
17
18
mypy --config-file =tox.ini transip tests
You can’t perform that action at this time.
0 commit comments