We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 210f538 commit 1db03c4Copy full SHA for 1db03c4
pyrogram/methods/users/get_default_emoji_statuses.py
@@ -16,6 +16,8 @@
16
# You should have received a copy of the GNU Lesser General Public License
17
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
18
19
+from typing import List
20
+
21
import pyrogram
22
from pyrogram import raw
23
from pyrogram import types
@@ -24,7 +26,7 @@
24
26
class GetDefaultEmojiStatuses:
25
27
async def get_default_emoji_statuses(
28
self: "pyrogram.Client",
- ) -> types.List["types.EmojiStatus"]:
29
+ ) -> List["types.EmojiStatus"]:
30
"""Get the default emoji statuses.
31
32
Returns:
0 commit comments