Skip to content

Commit 7002812

Browse files
committed
fix(core): fixes leftovers from rebase
1 parent 511732c commit 7002812

File tree

2 files changed

+1721
-178
lines changed

2 files changed

+1721
-178
lines changed

aws_lambda_powertools/event_handler/api_gateway.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
_SAFE_URI = "-._~()'!*:@,;" # https://www.ietf.org/rfc/rfc3986.txt
3333
# API GW/ALB decode non-safe URI chars; we must support them too
3434
_UNSAFE_URI = "%<> \[\]{}|^" # noqa: W605
35-
_NAMED_GROUP_BOUNDARY_PATTERN = fr"(?P\1[{_SAFE_URI}{_UNSAFE_URI}\\w]+)"
35+
_NAMED_GROUP_BOUNDARY_PATTERN = rf"(?P\1[{_SAFE_URI}{_UNSAFE_URI}\\w]+)"
3636

3737

3838
class ProxyEventType(Enum):

0 commit comments

Comments
 (0)