chore(panel.py): remove unnecesarry imports

This commit is contained in:
2025-08-26 19:34:14 +02:00
parent 055ab10ab7
commit 860ce5c836

View File

@@ -1,14 +1,10 @@
# -*- coding: utf-8 -*-
from __future__ import annotations
from typing import TYPE_CHECKING
import flask
import flask_login
if TYPE_CHECKING:
from werkzeug.wrappers import Response
panel_bp: flask.Blueprint = flask.Blueprint(
"panel", __name__, url_prefix="/panel"
)