From a6284539acd7a1b91de8b330a498d367c57876d9 Mon Sep 17 00:00:00 2001 From: dymik739 Date: Wed, 3 May 2023 21:47:33 +0300 Subject: [PATCH] module-v2-example: fix the testing typo to enable the module --- modules/module-v2-example/index.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/module-v2-example/index.py b/modules/module-v2-example/index.py index 2c0ddde..c48f583 100644 --- a/modules/module-v2-example/index.py +++ b/modules/module-v2-example/index.py @@ -4,7 +4,7 @@ class Counter: def call_count(self): self.counter += 1 - return self.counter.et + return self.counter c = Counter() @@ -13,4 +13,4 @@ def get_num(): def process(message, path): if message.text == "!v2-testing": - return f"Testing successful - this is call number {get_num()}" + return f"Testing successful - call number {get_num()}"