diff --git a/app/__init__.py b/app/__init__.py index aef0c2b6..3a1f54fc 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