mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-31 12:44:52 +00:00
Fix for older Python versions
This commit is contained in:
parent
210f538d55
commit
1db03c4351
1 changed files with 3 additions and 1 deletions
|
|
@ -16,6 +16,8 @@
|
|||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from typing import List
|
||||
|
||||
import pyrogram
|
||||
from pyrogram import raw
|
||||
from pyrogram import types
|
||||
|
|
@ -24,7 +26,7 @@ from pyrogram import types
|
|||
class GetDefaultEmojiStatuses:
|
||||
async def get_default_emoji_statuses(
|
||||
self: "pyrogram.Client",
|
||||
) -> types.List["types.EmojiStatus"]:
|
||||
) -> List["types.EmojiStatus"]:
|
||||
"""Get the default emoji statuses.
|
||||
|
||||
Returns:
|
||||
|
|
|
|||
Loading…
Reference in a new issue