Skip to content

Commit

Permalink
fix(core): fixes leftovers from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfonseca committed Sep 13, 2022
1 parent 511732c commit 7002812
Show file tree
Hide file tree
Showing 2 changed files with 1,721 additions and 178 deletions.
2 changes: 1 addition & 1 deletion aws_lambda_powertools/event_handler/api_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
_SAFE_URI = "-._~()'!*:@,;" # https://www.ietf.org/rfc/rfc3986.txt
# API GW/ALB decode non-safe URI chars; we must support them too
_UNSAFE_URI = "%<> \[\]{}|^" # noqa: W605
_NAMED_GROUP_BOUNDARY_PATTERN = fr"(?P\1[{_SAFE_URI}{_UNSAFE_URI}\\w]+)"
_NAMED_GROUP_BOUNDARY_PATTERN = rf"(?P\1[{_SAFE_URI}{_UNSAFE_URI}\\w]+)"


class ProxyEventType(Enum):
Expand Down
Loading

0 comments on commit 7002812

Please sign in to comment.