Source code for codegrade.models.assignment_kind

"""This module defines the enum AssignmentKind.

SPDX-License-Identifier: AGPL-3.0-only OR BSD-3-Clause-Clear
"""

from enum import Enum


[docs]class AssignmentKind(str, Enum): normal = "normal" exam = "exam"