Skip to content

Commit a988470

Browse files
committed
removed trailing spaces and configured with flake8
1 parent 373b512 commit a988470

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

MAVProxy/modules/mavproxy_chat/chat_openai.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ def check_connection(self):
8383
if self.assistant is None:
8484
print("chat: failed to connect to OpenAI assistant")
8585
return False
86-
86+
8787
# To initialize existing thread id
8888
assistant_thread_id_existing = None
8989

9090
# Check for existing thread
91-
if assistant_thread_id_existing is not None :
91+
if assistant_thread_id_existing is not None :
9292
self.assistant_thread = self.client.beta.threads.retrieve(assistant_thread_id_existing)
9393
# create new thread
9494
if self.assistant_thread is None:
@@ -105,23 +105,23 @@ def set_api_key(self, api_key_str):
105105
self.assistant = None
106106
self.assistant_thread = None
107107

108-
# get the old thread and messages
108+
# get the old thread and messages
109109
def get_old_msg(self):
110110
with self.send_lock:
111111

112112
# check connection
113113
if not self.check_connection():
114114
return "chat: failed to connect to OpenAI"
115-
115+
116116
# retrieve messages on the thread
117117
reply = ""
118118
reply_messages = self.client.beta.threads.messages.list(self.assistant_thread.id,
119119
order="asc",
120-
limit = 20)
121-
120+
limit=20)
121+
122122
if reply_messages is None:
123123
return "chat: failed to retrieve messages"
124-
124+
125125
need_newline = False
126126
for message in reply_messages.data:
127127
reply = reply + message.content[0].text.value

MAVProxy/modules/mavproxy_chat/chat_window.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ def apikey_set_button_click(self, event):
106106
self.chat_openai.set_api_key(self.apikey_text_input.GetValue())
107107
self.chat_voice_to_text.set_api_key(self.apikey_text_input.GetValue())
108108
self.apikey_frame.Hide()
109-
110-
#initially place all old messages
109+
110+
# initially place all old messages
111111
orig_text_attr = self.text_reply.GetDefaultStyle()
112112
old_msgs = self.chat_openai.get_old_msg()
113-
if old_msgs :
113+
if old_msgs :
114114
wx.CallAfter(self.text_reply.SetDefaultStyle, orig_text_attr)
115115
wx.CallAfter(self.text_reply.AppendText, old_msgs + "\n\n")
116116

0 commit comments

Comments
 (0)