fix in import

This commit is contained in:
Mateusz Gruszczyński
2026-07-14 13:50:42 +02:00
parent 289c812ab9
commit 654bffded0
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -5,7 +5,6 @@ from pathlib import Path
from .extensions import db, login_manager
from .models import User, AppSetting
from .config import Config
from .domain.costs import calculate_net_price_costs
THEMES = {name: {} for name in ("bootstrap", "flatly", "darkly", "pulse")}
+1
View File
@@ -12,6 +12,7 @@ from .services import calculate_costs, fetch_orlen_price, fetch_orlen_range, inv
from .station_catalog import sync_station_catalog
from . import THEMES
from .vat import effective_vat_rate, global_vat_override, save_global_vat_override
from .domain.costs import calculate_net_price_costs
main = Blueprint("main", __name__)
FUEL_TYPES = ("PB95", "PB98", "DIESEL", "LPG")