telegram. Adding docstrings to classes.
This commit is contained in:
parent
95cd6c6383
commit
eba2ab2252
|
@ -3,6 +3,10 @@ from telebot.types import Message
|
|||
|
||||
|
||||
class CommandProcessor:
|
||||
"""
|
||||
Processes user input and dispatches the data to other services.
|
||||
"""
|
||||
|
||||
bot: telebot.TeleBot
|
||||
|
||||
def __init__(self, token: str):
|
||||
|
|
|
@ -2,6 +2,10 @@ import telebot
|
|||
|
||||
|
||||
class Notifier:
|
||||
"""
|
||||
Sends notifications to users about new RSS feed items.
|
||||
"""
|
||||
|
||||
bot: telebot.TeleBot
|
||||
|
||||
def __init__(self, token: str):
|
||||
|
|
Loading…
Reference in a new issue