Skip to content

Hints

HintRequirementsDict

Bases: TypedDict

Represents the requirements of a hint in CTFd.

Source code in ctfdpy\types\hints.py
4
5
6
7
8
9
class HintRequirementsDict(TypedDict):
    """
    Represents the requirements of a hint in CTFd.
    """

    prerequisites: list[int]