Files
bearhub/bauh/gems/flatpak/config.py
2020-01-11 18:10:07 -03:00

8 lines
256 B
Python

from bauh.commons.config import read_config as read
from bauh.gems.flatpak import CONFIG_FILE
def read_config(update_file: bool = False) -> dict:
template = {'installation_level': None}
return read(CONFIG_FILE, template, update_file=update_file)