Fix some non-importable types for type hint
This commit is contained in:
parent
a0355a5cc4
commit
4bf6831be8
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user