Skip to content

Commit

Permalink
Fixed #26.
Browse files Browse the repository at this point in the history
  • Loading branch information
ATATC committed Mar 1, 2024
1 parent e554f5d commit b3d5d82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions leads_vec_rc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
from leads.data_persistence import *
from leads_gui import *

config = load_config(abspath(__file__)[:-6] + "config.json", Config)
config = load_config("config.json", Config)
if not exists(config.data_dir):
mkdir(config.data_dir)
L.info(f"Data dir \"{config.data_dir}\" created")
L.info(f"Data dir \"{abspath(config.data_dir)}\" created")

time_stamp_record = DataPersistence(config.data_dir + "/time_stamp.csv", persistence=config.enable_data_persistence,
max_size=2000)
Expand Down

0 comments on commit b3d5d82

Please sign in to comment.