Fix some non-importable types for type hint

This commit is contained in:
Dan 2018-12-22 11:22:58 +01:00
parent a0355a5cc4
commit 4bf6831be8
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ from ...ext import BaseClient
class GetMe(BaseClient):
def get_me(self) -> pyrogram.User:
def get_me(self) -> "pyrogram.User":
"""A simple method for testing your authorization. Requires no parameters.
Returns:

View File

@ -27,7 +27,7 @@ class GetUserProfilePhotos(BaseClient):
def get_user_profile_photos(self,
user_id: Union[int, str],
offset: int = 0,
limit: int = 100) -> pyrogram.UserProfilePhotos:
limit: int = 100) -> "pyrogram.UserProfilePhotos":
"""Use this method to get a list of profile pictures for a user.
Args:

View File

@ -25,7 +25,7 @@ from ...ext import BaseClient
class GetUsers(BaseClient):
def get_users(self,
user_ids: Iterable[Union[int, str]]) -> Union[pyrogram.User or List[pyrogram.User]]:
user_ids: Iterable[Union[int, str]]) -> Union["pyrogram.User", List["pyrogram.User"]]:
"""Use this method to get information about a user.
You can retrieve up to 200 users at once.