Coverage for src/extratools_core/config.py: 0%
10 statements
« prev ^ index » next coverage.py v7.8.1, created at 2025-06-24 04:36 -0700
« prev ^ index » next coverage.py v7.8.1, created at 2025-06-24 04:36 -0700
1from enum import IntEnum
4class ConfigLevel(IntEnum):
5 DEFAULT = 0
6 CONFIG_FILE = 1
7 ENV = 2
8 DYNAMIC = 3
9 ADHOC = 4
12class Config:
13 def __init__(self,) -> None:
14 ...