mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Update __init__.py
This commit is contained in:
parent
ff35f25211
commit
f337abe06e
@ -2575,9 +2575,6 @@ class TeleBot:
|
|||||||
if content_types is None:
|
if content_types is None:
|
||||||
content_types = ["text"]
|
content_types = ["text"]
|
||||||
|
|
||||||
if type(state) is not list and state is not None:
|
|
||||||
state = [state]
|
|
||||||
|
|
||||||
if isinstance(commands, str):
|
if isinstance(commands, str):
|
||||||
logger.warning("message_handler: 'commands' filter should be List of strings (commands), not string.")
|
logger.warning("message_handler: 'commands' filter should be List of strings (commands), not string.")
|
||||||
commands = [commands]
|
commands = [commands]
|
||||||
@ -2592,7 +2589,6 @@ class TeleBot:
|
|||||||
content_types=content_types,
|
content_types=content_types,
|
||||||
commands=commands,
|
commands=commands,
|
||||||
regexp=regexp,
|
regexp=regexp,
|
||||||
state=state,
|
|
||||||
func=func,
|
func=func,
|
||||||
**kwargs)
|
**kwargs)
|
||||||
self.add_message_handler(handler_dict)
|
self.add_message_handler(handler_dict)
|
||||||
@ -2608,7 +2604,7 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.message_handlers.append(handler_dict)
|
self.message_handlers.append(handler_dict)
|
||||||
|
|
||||||
def register_message_handler(self, callback, content_types=None, commands=None, regexp=None, func=None, chat_types=None, state=None, **kwargs):
|
def register_message_handler(self, callback, content_types=None, commands=None, regexp=None, func=None, chat_types=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
Registers message handler.
|
Registers message handler.
|
||||||
:param callback: function to be called
|
:param callback: function to be called
|
||||||
@ -2632,7 +2628,6 @@ class TeleBot:
|
|||||||
content_types=content_types,
|
content_types=content_types,
|
||||||
commands=commands,
|
commands=commands,
|
||||||
regexp=regexp,
|
regexp=regexp,
|
||||||
state=state,
|
|
||||||
func=func,
|
func=func,
|
||||||
**kwargs)
|
**kwargs)
|
||||||
self.add_message_handler(handler_dict)
|
self.add_message_handler(handler_dict)
|
||||||
|
Loading…
Reference in New Issue
Block a user