module-v2-example: fix the testing typo to enable the module

This commit is contained in:
dymik739 2023-05-03 21:47:33 +03:00
parent 7e0a47e498
commit a6284539ac
1 changed files with 2 additions and 2 deletions

View File

@ -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()}"