File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
openapi_core/contrib/requests Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,6 @@ def create(cls, request):
38
38
# extract the URL without query parameters
39
39
url = o ._replace (query = None ).geturl ()
40
40
41
- # gets deduced by path finder against spec
42
- path = {}
43
-
44
41
# Order matters because all python requests issued from a session
45
42
# include Accept */* which does not necessarily match the content type
46
43
mimetype = request .headers .get ('Content-Type' ) or \
@@ -54,11 +51,11 @@ def create(cls, request):
54
51
# TODO: figure out if request._body_position is relevant
55
52
body = request .body
56
53
54
+ # Path gets deduced by path finder against spec
57
55
parameters = RequestParameters (
58
56
query = ImmutableMultiDict (params ),
59
57
header = header ,
60
58
cookie = cookie ,
61
- path = path ,
62
59
)
63
60
return OpenAPIRequest (
64
61
full_url_pattern = url ,
You can’t perform that action at this time.
0 commit comments