From 1f67623615c3cbde2b1e2a3867b5b71079bd4823 Mon Sep 17 00:00:00 2001 From: Noam Meltzer Date: Mon, 3 Oct 2016 21:34:08 +0300 Subject: [PATCH] Fix import order --- telegram/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/telegram/__init__.py b/telegram/__init__.py index b0bb883fd..f4520f923 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -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'