Revert "Export resolve_peer"

This reverts commit dd422c0
This commit is contained in:
Dan 2018-08-10 11:29:05 +02:00
parent dd422c0edf
commit ef6f080546
2 changed files with 3 additions and 5 deletions

View File

@ -20,7 +20,7 @@ from .bots import Bots
from .chats import Chats from .chats import Chats
from .contacts import Contacts from .contacts import Contacts
from .decorators import Decorators from .decorators import Decorators
from .utilities import Utilities from .download_media import DownloadMedia
from .messages import Messages from .messages import Messages
from .password import Password from .password import Password
from .users import Users from .users import Users
@ -32,7 +32,7 @@ class Methods(
Password, Password,
Chats, Chats,
Users, Users,
Utilities, DownloadMedia,
Messages, Messages,
Decorators Decorators
): ):

View File

@ -17,11 +17,9 @@
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>. # along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
from .download_media import DownloadMedia from .download_media import DownloadMedia
from .resolve_peer import ResolvePeer
class Utilities( class Utilities(
DownloadMedia, DownloadMedia
ResolvePeer
): ):
pass pass