From 97c976951088ab00b2f5587899481fb20796518e Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sun, 24 Mar 2024 00:34:31 +0900 Subject: [PATCH] Fix typo in i.py programatically -> programmatically --- software/source/server/i.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/software/source/server/i.py b/software/source/server/i.py index ada9e96..117ca84 100644 --- a/software/source/server/i.py +++ b/software/source/server/i.py @@ -357,7 +357,7 @@ def configure_interpreter(interpreter: OpenInterpreter): interpreter.computer.languages = [l for l in interpreter.computer.languages if l.name.lower() in ["applescript", "shell", "zsh", "bash", "python"]] interpreter.force_task_completion = True # interpreter.offline = True - interpreter.id = 206 # Used to identify itself to other interpreters. This should be changed programatically so it's unique. + interpreter.id = 206 # Used to identify itself to other interpreters. This should be changed programmatically so it's unique. ### RESET conversations/user.json app_dir = user_data_dir('01') @@ -367,4 +367,4 @@ def configure_interpreter(interpreter: OpenInterpreter): with open(user_json_path, 'w') as file: json.dump([], file) - return interpreter \ No newline at end of file + return interpreter