binance: always load the `brokers.toml` file since default is `conf.toml` now

distribute_dis
Tyler Goodlet 2023-10-01 17:37:09 -04:00
parent a382f01c85
commit 81a8cd1685
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,10 @@ def get_config() -> dict:
conf: dict
path: Path
conf, path = config.load(touch_if_dne=True)
conf, path = config.load(
conf_name='brokers',
touch_if_dne=True,
)
section = conf.get('binance')