add individual config files for each strategy,

config file path can be specified as the second argument
This commit is contained in:
Arthur Lu
2025-02-28 19:17:44 +00:00
committed by root
parent e9b1128826
commit f7903f4fea
6 changed files with 18 additions and 1 deletions

View File

@@ -1,7 +1,8 @@
import os
import yaml
import sys
CONFIG_FILE = "config.yaml"
CONFIG_FILE = sys.argv[1]
def load_config():
with open(CONFIG_FILE, "r") as f: