X Tutup
Skip to content

Commit 1f67623

Browse files
committed
Fix import order
1 parent 8737b5d commit 1f67623

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

telegram/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,16 @@
7777
from .inputlocationmessagecontent import InputLocationMessageContent
7878
from .inputvenuemessagecontent import InputVenueMessageContent
7979
from .inputcontactmessagecontent import InputContactMessageContent
80+
from .webhookinfo import WebhookInfo
81+
from .animation import Animation
82+
from .game import Game
83+
from .gamehighscore import GameHighScore
8084
from .update import Update
8185
from .bot import Bot
8286
from .constants import (MAX_MESSAGE_LENGTH, MAX_CAPTION_LENGTH, SUPPORTED_WEBHOOK_PORTS,
8387
MAX_FILESIZE_DOWNLOAD, MAX_FILESIZE_UPLOAD,
8488
MAX_MESSAGES_PER_SECOND_PER_CHAT, MAX_MESSAGES_PER_SECOND,
8589
MAX_MESSAGES_PER_MINUTE_PER_GROUP)
86-
from .webhookinfo import WebhookInfo
87-
from .animation import Animation
88-
from .game import Game
89-
from .gamehighscore import GameHighScore
9090
from .version import __version__ # flake8: noqa
9191

9292
__author__ = 'devs@python-telegram-bot.org'

0 commit comments

Comments
 (0)
X Tutup