chore: run lint and prettifier

This commit is contained in:
3252a8
2026-05-12 21:54:12 +03:00
parent f31540afdb
commit 11187487b4
174 changed files with 12383 additions and 6688 deletions
+1 -4
View File
@@ -12,7 +12,6 @@ from __future__ import annotations
import logging
from typing import Any, Dict, Optional
from sqlalchemy.ext.asyncio import AsyncSession
from sqlalchemy.orm import sessionmaker
from bot.app.web.admin_settings_manifest import (
@@ -74,9 +73,7 @@ def apply_overrides(settings: Settings, overrides: Dict[str, Any]) -> int:
return applied
async def load_overrides_from_db(
settings: Settings, async_session_factory: sessionmaker
) -> int:
async def load_overrides_from_db(settings: Settings, async_session_factory: sessionmaker) -> int:
"""Fetch overrides from the DB and apply them to the in-memory settings."""
try: