This repository has been archived on 2024-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
EmojiCaptchaBot/classes/captcha.py
2023-08-10 13:05:40 +02:00

12 lines
242 B
Python

from dataclasses import dataclass
from io import BytesIO
from typing import List
@dataclass
class Captcha:
__slots__ = ("image", "emojis_all", "emojis_correct")
image: BytesIO
emojis_all: List[str]
emojis_correct: List[str]