From 3b7edf4a2986abc507aec9a269b56ff4eab5dd2e Mon Sep 17 00:00:00 2001 From: killswitch Date: Sat, 13 Jan 2024 17:59:18 -0600 Subject: [PATCH] change to filepath --- jensetup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jensetup.py b/jensetup.py index 21011f5..09283c6 100644 --- a/jensetup.py +++ b/jensetup.py @@ -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")