We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511732c commit 7002812Copy full SHA for 7002812
aws_lambda_powertools/event_handler/api_gateway.py
@@ -32,7 +32,7 @@
32
_SAFE_URI = "-._~()'!*:@,;" # https://www.ietf.org/rfc/rfc3986.txt
33
# API GW/ALB decode non-safe URI chars; we must support them too
34
_UNSAFE_URI = "%<> \[\]{}|^" # noqa: W605
35
-_NAMED_GROUP_BOUNDARY_PATTERN = fr"(?P\1[{_SAFE_URI}{_UNSAFE_URI}\\w]+)"
+_NAMED_GROUP_BOUNDARY_PATTERN = rf"(?P\1[{_SAFE_URI}{_UNSAFE_URI}\\w]+)"
36
37
38
class ProxyEventType(Enum):
0 commit comments