From 57689aee201680a029bc0197a38818179e7424d8 Mon Sep 17 00:00:00 2001 From: PuQing Date: Sun, 28 Jan 2024 20:39:48 +0800 Subject: [PATCH] Remove unused import and function call --- backend/app/app/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/app/app/main.py b/backend/app/app/main.py index 01ef24a..dbba442 100644 --- a/backend/app/app/main.py +++ b/backend/app/app/main.py @@ -2,7 +2,6 @@ from app.core.config import settings from app.gunicorn_runner import GunicornApplication -from app.initial_data import init def main(): @@ -11,7 +10,6 @@ def main(): This function is used to start the application. """ - init() if settings.reload: uvicorn.run( "app.web.application:get_app",