binance: always load the `brokers.toml` file since default is `conf.toml` now
parent
a382f01c85
commit
81a8cd1685
|
@ -83,7 +83,10 @@ def get_config() -> dict:
|
||||||
|
|
||||||
conf: dict
|
conf: dict
|
||||||
path: Path
|
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')
|
section = conf.get('binance')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue