2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 21:07:59 +00:00

Move message_parser outside

This commit is contained in:
Dan 2018-04-08 15:36:22 +02:00
parent 28ffff57e1
commit 578047dbec
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ from threading import Thread
import pyrogram import pyrogram
from pyrogram.api import types from pyrogram.api import types
from . import message_parser from .. import message_parser
from ..handler import ( from ..handler import (
Handler, MessageHandler, RawUpdateHandler Handler, MessageHandler, RawUpdateHandler
) )

View File

@ -20,7 +20,7 @@ from struct import pack
import pyrogram import pyrogram
from pyrogram.api import types from pyrogram.api import types
from ..utils import encode from .utils import encode
# TODO: Organize the code better? # TODO: Organize the code better?