mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
rename boteventhandler.py to updater.py
This commit is contained in:
parent
658b5ff1c0
commit
83812f3af6
2 changed files with 3 additions and 4 deletions
|
@ -48,7 +48,7 @@ from .message import Message
|
|||
from .update import Update
|
||||
from .bot import Bot
|
||||
from .dispatcher import Dispatcher
|
||||
from .boteventhandler import Updater
|
||||
from .updater import Updater
|
||||
|
||||
__all__ = ['Bot', 'Updater', 'Dispatcher', 'Emoji', 'TelegramError',
|
||||
'InputFile', 'ReplyMarkup', 'ForceReply', 'ReplyKeyboardHide',
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
This module contains the class BotEventHandler, which tries to make creating
|
||||
|
||||
Telegram Bots intuitive!
|
||||
This module contains the class Updater, which tries to make creating Telegram
|
||||
Bots intuitive!
|
||||
"""
|
||||
import logging
|
||||
import os
|
Loading…
Reference in a new issue