From 6a622f13d78758f97abe4a7c0191b890fd15ef37 Mon Sep 17 00:00:00 2001 From: Gabriel Carneiro Date: Wed, 4 Oct 2023 21:30:17 -0300 Subject: [PATCH] fix wrong import --- src/stream_auth/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream_auth/main.py b/src/stream_auth/main.py index 8bef0ef..99ded9e 100644 --- a/src/stream_auth/main.py +++ b/src/stream_auth/main.py @@ -6,7 +6,7 @@ import logging from flask import Flask from stream_auth import settings from stream_auth.routes.user import user as user_routes -from stream_auth.routes.stream import user as stream_routes +from stream_auth.routes.stream import stream as stream_routes app = Flask(__name__)