Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Apr 11, 2024
1 parent b16806b commit 39cfc21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esmerald/openapi/openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def get_openapi_operation_parameters(
if field_info.examples is not None:
parameter.example = json.dumps(field_info.examples)
if field_info.deprecated:
parameter.deprecated = field_info.deprecated
parameter.deprecated = field_info.deprecated # type: ignore

parameters.append(parameter.model_dump(by_alias=True))
return parameters
Expand Down

0 comments on commit 39cfc21

Please sign in to comment.