Skip to content

Commit d89d8c2

Browse files
committed
Moved the reason to the last parameter
1 parent e6cc3a1 commit d89d8c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mockserver_friendly/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def request(method=None, path=None, querystring=None, body=None, headers=None, c
5151
)
5252

5353

54-
def response(code=None, reason=None, body=None, headers=None, cookies=None, delay=None):
54+
def response(code=None, body=None, headers=None, cookies=None, delay=None, reason=None):
5555
return _non_null_options_to_dict(
5656
_Option("statusCode", code),
5757
_Option("reasonPhrase", reason),

0 commit comments

Comments
 (0)