Coverage for fastblocks/adapters/admin/_base.py: 0%
5 statements
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-09 00:47 -0700
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-09 00:47 -0700
1from acb.config import AdapterBase, Settings
4class AdminBaseSettings(Settings): # type: ignore[misc]
5 style: str = "bootstrap"
6 title: str = "FastBlocks Dashboard"
9class AdminBase(AdapterBase): ... # type: ignore[misc]