Look for config in /etc instead of /var/lib

This commit is contained in:
2026-01-12 03:14:58 +09:00
parent 699a32f3b3
commit ca954c2f6f

View File

@@ -20,7 +20,7 @@ class Config:
_expected_config_file_locations = [
Path("./config.toml"),
Path("~/.config/worblehat/config.toml"),
Path("/var/lib/worblehat/config.toml"),
Path("/etc/worblehat/config.toml"),
]
def __class_getitem__(cls, name: str) -> Any: