Files
bearhub/bauh/gems/arch/config.py
2020-02-11 14:05:16 -03:00

8 lines
323 B
Python

from bauh.commons.config import read_config as read
from bauh.gems.arch import CONFIG_FILE
def read_config(update_file: bool = False) -> dict:
template = {'optimize': True, 'transitive_checking': True, "sync_databases": True, "pacman_dep_check": False}
return read(CONFIG_FILE, template, update_file=update_file)