Skip to content

Commit

Permalink
change to filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
killswitch committed Jan 13, 2024
1 parent afc075a commit 3b7edf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jensetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def configure():
else:
print("Invalid mode. Defaulting to conversation mode.")

# Save to config.json
with open('/home/killswitch/config.json', 'w') as config_file:
# Save to config.json in the current directory
with open('config.json', 'w') as config_file:
json.dump(config, config_file, indent=4)

print("Configuration has been saved to config.json")
Expand Down

0 comments on commit 3b7edf4

Please sign in to comment.