mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 22:54:16 +02:00
8 lines
296 B
Python
8 lines
296 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}
|
|
return read(CONFIG_FILE, template, update_file=update_file)
|