diff --git a/src/darkgraylib/config.py b/src/darkgraylib/config.py index 4a085aa0..cf85fbbd 100644 --- a/src/darkgraylib/config.py +++ b/src/darkgraylib/config.py @@ -33,14 +33,14 @@ class BaseConfig(TypedDict, total=False): """ - src: list[str] - revision: str - stdout: bool + color: bool config: str log_level: int | str - color: bool - workers: int quiet: bool + revision: str + src: list[str] + stdout: bool + workers: int class ConfigurationError(Exception):