From 87b7a63ff2ca86b7f57af9376cd52c12672b6e08 Mon Sep 17 00:00:00 2001 From: dmontagu <35119617+dmontagu@users.noreply.github.com> Date: Tue, 18 Jun 2019 04:52:34 -0700 Subject: [PATCH] :fire: Remove unused regex in routing.py (#314) --- fastapi/routing.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/fastapi/routing.py b/fastapi/routing.py index 526cc485d..ea2b5fb24 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -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)