We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d4eea6 commit 4da727aCopy full SHA for 4da727a
openapi_python_client/parser/openapi.py
@@ -347,7 +347,7 @@ def add_parameters(
347
endpoint = deepcopy(endpoint)
348
349
unique_parameters: Set[Tuple[str, oai.ParameterLocation]] = set()
350
- parameters_by_location = {
+ parameters_by_location: Dict[str, Dict[str, Property]] = {
351
oai.ParameterLocation.QUERY: endpoint.query_parameters,
352
oai.ParameterLocation.PATH: endpoint.path_parameters,
353
oai.ParameterLocation.HEADER: endpoint.header_parameters,
0 commit comments