mirror of
https://github.com/aclist/dztui.git
synced 2026-08-26 01:37:18 +02:00
chore: abstract function to facilitate unit testing
This commit is contained in:
parent
fb2772cde2
commit
b8fbbbb1cd
@ -344,13 +344,15 @@ def get_app_allows_downloads(path: Path, appid: int) -> bool:
|
||||
# NOTE: never allow
|
||||
case 2:
|
||||
return False
|
||||
# NOTE: no other known values at this time
|
||||
# NOTE: no other known values at this time, fallback (assume permits)
|
||||
case _:
|
||||
return True
|
||||
|
||||
def get_config(path: Path) -> bool:
|
||||
return path.joinpath("config/config.vdf")
|
||||
|
||||
def get_client_allows_downloads(path: Path) -> bool:
|
||||
config = path.joinpath("config/config.vdf")
|
||||
config = get_config(path)
|
||||
try:
|
||||
with open(config) as f:
|
||||
settings = vdf.load(f)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user