From fb97d2f686ef5de2c40120940b87836c4886ddaa Mon Sep 17 00:00:00 2001 From: Janneck Wullschleger Date: Sat, 16 Dec 2017 20:44:11 +0100 Subject: [PATCH] fixed doc string of Request --- pact/pact.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pact/pact.py b/pact/pact.py index 3e6cb8755..4c8cf9de5 100644 --- a/pact/pact.py +++ b/pact/pact.py @@ -297,9 +297,9 @@ def __init__(self, method, path, body=None, headers=None, query=''): Create a new instance of Request. :param method: The HTTP method that is expected. - :type method: str, Matcher + :type method: str :param path: The URI path that is expected on this request. - :type path: str + :type path: str, Matcher :param body: The contents of the body of the expected request. :type body: str, dict, list :param headers: The headers of the expected request.