Skip to content

Commit 4da727a

Browse files
committed
chore: Hold mypy's hand
1 parent 3d4eea6 commit 4da727a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openapi_python_client/parser/openapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def add_parameters(
347347
endpoint = deepcopy(endpoint)
348348

349349
unique_parameters: Set[Tuple[str, oai.ParameterLocation]] = set()
350-
parameters_by_location = {
350+
parameters_by_location: Dict[str, Dict[str, Property]] = {
351351
oai.ParameterLocation.QUERY: endpoint.query_parameters,
352352
oai.ParameterLocation.PATH: endpoint.path_parameters,
353353
oai.ParameterLocation.HEADER: endpoint.header_parameters,

0 commit comments

Comments
 (0)