build(web_server.py): order imports
This commit is contained in:
@@ -53,12 +53,7 @@ class JudasWebServer:
|
|||||||
|
|
||||||
def init_routes(self) -> None:
|
def init_routes(self) -> None:
|
||||||
self.logger.debug("Initializing routes...")
|
self.logger.debug("Initializing routes...")
|
||||||
from judas_server.web.routes import (
|
from judas_server.web.routes import api, auth_bp, index_bp, panel_bp
|
||||||
auth_bp,
|
|
||||||
index_bp,
|
|
||||||
panel_bp,
|
|
||||||
api,
|
|
||||||
)
|
|
||||||
|
|
||||||
self.app.register_blueprint(index_bp)
|
self.app.register_blueprint(index_bp)
|
||||||
self.app.register_blueprint(auth_bp)
|
self.app.register_blueprint(auth_bp)
|
||||||
|
|||||||
Reference in New Issue
Block a user