Skip to content

fix(event_handler): frozen openapi extensions option typo #5297 #5928

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aws_lambda_powertools/event_handler/api_gateway.py
Original file line number Diff line number Diff line change
@@ -2521,7 +2521,7 @@ def register_route(func: AnyCallableT) -> AnyCallableT:
frozen_responses = _FrozenDict(responses) if responses else None
frozen_tags = frozenset(tags) if tags else None
frozen_security = _FrozenListDict(security) if security else None
fronzen_openapi_extensions = _FrozenDict(openapi_extensions) if openapi_extensions else None
frozen_openapi_extensions = _FrozenDict(openapi_extensions) if openapi_extensions else None

route_key = (
rule,
@@ -2537,7 +2537,7 @@ def register_route(func: AnyCallableT) -> AnyCallableT:
operation_id,
include_in_schema,
frozen_security,
fronzen_openapi_extensions,
frozen_openapi_extensions,
deprecated,
)