Drag commited on
Commit
97c7805
·
1 Parent(s): fbac4d2

Update palmchat.py

Browse files
Files changed (1) hide show
  1. Mikobot/plugins/palmchat.py +2 -2
Mikobot/plugins/palmchat.py CHANGED
@@ -9,8 +9,8 @@ import google.generativeai as genai
9
 
10
  @app.on_message(filters.text)
11
  async def handle_message(client, message):
12
- if not (message.text.startswith("flash"):
13
- return
14
 
15
  query = " ".join(message.text.split()[1:])
16
 
 
9
 
10
  @app.on_message(filters.text)
11
  async def handle_message(client, message):
12
+ if not message.text.startswith("flash"):
13
+ return
14
 
15
  query = " ".join(message.text.split()[1:])
16