aboutsummaryrefslogtreecommitdiffstats
path: root/backend/route_manager.py
diff options
context:
space:
mode:
authorGravatar decorator-factory <[email protected]>2020-12-15 09:21:34 +0300
committerGravatar decorator-factory <[email protected]>2020-12-15 09:21:34 +0300
commit9c7af9c463672a24657153245d8f1b0c59e69589 (patch)
treef03a613dfd2cf856cbfb54e41a3fdc4433fea956 /backend/route_manager.py
parentrefactor route discovery (diff)
remove stray print
Diffstat (limited to 'backend/route_manager.py')
-rw-r--r--backend/route_manager.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/backend/route_manager.py b/backend/route_manager.py
index 7866404..d9e5700 100644
--- a/backend/route_manager.py
+++ b/backend/route_manager.py
@@ -17,7 +17,6 @@ from backend.route import Route
def construct_route_map_from_dict(route_dict: dict) -> list[BaseRoute]:
route_map = []
for mount, item in route_dict.items():
- print(mount, item)
if inspect.isclass(item):
route_map.append(StarletteRoute(mount, item))
else: