Fix import order

This commit is contained in:
Noam Meltzer 2016-10-03 21:34:08 +03:00
parent 8737b5de63
commit 1f67623615

View file

@ -77,16 +77,16 @@ from .inputtextmessagecontent import InputTextMessageContent
from .inputlocationmessagecontent import InputLocationMessageContent
from .inputvenuemessagecontent import InputVenueMessageContent
from .inputcontactmessagecontent import InputContactMessageContent
from .webhookinfo import WebhookInfo
from .animation import Animation
from .game import Game
from .gamehighscore import GameHighScore
from .update import Update
from .bot import Bot
from .constants import (MAX_MESSAGE_LENGTH, MAX_CAPTION_LENGTH, SUPPORTED_WEBHOOK_PORTS,
MAX_FILESIZE_DOWNLOAD, MAX_FILESIZE_UPLOAD,
MAX_MESSAGES_PER_SECOND_PER_CHAT, MAX_MESSAGES_PER_SECOND,
MAX_MESSAGES_PER_MINUTE_PER_GROUP)
from .webhookinfo import WebhookInfo
from .animation import Animation
from .game import Game
from .gamehighscore import GameHighScore
from .version import __version__ # flake8: noqa
__author__ = 'devs@python-telegram-bot.org'