From 7231d008043b6659291a18e5018f0983e3de5150 Mon Sep 17 00:00:00 2001 From: nemesis Date: Tue, 10 Jul 2018 21:05:33 +0200 Subject: [PATCH] return True --- mall_handler.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mall_handler.py b/mall_handler.py index 03f5ba4..70dd820 100644 --- a/mall_handler.py +++ b/mall_handler.py @@ -8,4 +8,7 @@ class MAllHandler(MHandler): # handle_callback - Function to call if message contains command # cmd_char - Character that denotes a command. '!' by default def __init__(self, handle_callback): - MHandler.__init__(self, True, handle_callback) \ No newline at end of file + MHandler.__init__(self, self.test, handle_callback) + + def test() + return True \ No newline at end of file