From a0a0b1d41bbedca0fbde49fd4f7a0ab0320c424d Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Mon, 10 Jan 2022 08:42:48 -0800 Subject: [PATCH] remove _user_app --- starlette/routing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/starlette/routing.py b/starlette/routing.py index cc1be972fa..cdf5343682 100644 --- a/starlette/routing.py +++ b/starlette/routing.py @@ -354,7 +354,6 @@ def __init__( else: self.app = Router(routes=routes) self._routes = getattr(self.app, "routes", []) - self._user_app = self.app self.name = name self.path_regex, self.path_format, self.param_convertors = compile_path( self.path + "/{path:path}"