mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-16 04:53:11 -04:00
🔥 Remove unused regex in routing.py (#314)
This commit is contained in:
committed by
Sebastián Ramírez
parent
06d0918c3d
commit
87b7a63ff2
@@ -180,8 +180,6 @@ class APIWebSocketRoute(routing.WebSocketRoute):
|
||||
dependency_overrides_provider=dependency_overrides_provider,
|
||||
)
|
||||
)
|
||||
regex = "^" + path + "$"
|
||||
regex = re.sub("{([a-zA-Z_][a-zA-Z0-9_]*)}", r"(?P<\1>[^/]+)", regex)
|
||||
self.path_regex, self.path_format, self.param_convertors = compile_path(path)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user