From 57d80320566e83394ae97aa7a5706466224dd195 Mon Sep 17 00:00:00 2001 From: Arves100 Date: Mon, 9 Mar 2020 01:57:04 +0100 Subject: [PATCH] Fix --- inline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inline.py b/inline.py index 41753ef..0b4463c 100644 --- a/inline.py +++ b/inline.py @@ -210,7 +210,7 @@ class InlineBot: results = list() if not query: for command in self.commands: - results.append(self.makeResult(command, senderid) + results.append(self.makeResult(command, senderid)) else: results.append(self.makeResult(self.cancerCommand, senderid, query)) context.bot.answer_inline_query(update.inline_query.id, results, 1, False)