Files
bearhub/bauh/gems/snap/config.py

8 lines
273 B
Python

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