diff --git a/app/__init__.py b/app/__init__.py index aef0c2b69986b21ead737e6326c7673e1162ff1c..3a1f54fc14b5e002a08fc4a31be30f8a502f0bd8 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -48,7 +48,4 @@ def create_app(config_name): from .services import services as services_blueprint app.register_blueprint(services_blueprint, url_prefix='/services') - from .test import test as test_blueprint - app.register_blueprint(test_blueprint, url_prefix='/test') - return app