Skip to content

Commit

Permalink
fix config issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethjmyers committed Apr 26, 2024
1 parent 10ad330 commit 6402d16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion model/test_discordUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def cfg():
cfg_file = cu.find_config()
except FileNotFoundError as e:
print(e)
cfg_file = os.path.join(PATH_OF_THIS_FILE, "../../example_reddit.cfg")
cfg_file = os.path.join(PATH_OF_THIS_FILE, "../example_reddit.cfg")
cfg = cu.parse_config(cfg_file)
return cfg

Expand Down
2 changes: 1 addition & 1 deletion model/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def cfg():
cfg_file = cu.find_config()
except FileNotFoundError as e:
print(e)
cfg_file = os.path.join(PATH_OF_THIS_FILE, "../../example_reddit.cfg")
cfg_file = os.path.join(PATH_OF_THIS_FILE, "../example_reddit.cfg")
cfg = cu.parse_config(cfg_file)
return cfg

Expand Down

0 comments on commit 6402d16

Please sign in to comment.