Merge pull request #129 from eltociear/patch-1

Fix typo in i.py
pull/135/head
Ty Fiero 10 months ago committed by GitHub
commit b818fa2add
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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.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.force_task_completion = True
# interpreter.offline = 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 ### RESET conversations/user.json
app_dir = user_data_dir('01') app_dir = user_data_dir('01')
@ -367,4 +367,4 @@ def configure_interpreter(interpreter: OpenInterpreter):
with open(user_json_path, 'w') as file: with open(user_json_path, 'w') as file:
json.dump([], file) json.dump([], file)
return interpreter return interpreter

Loading…
Cancel
Save