blob: 7f80aa576b00c02bbaa870b6f5988f795ad507c7 [file] [log] [blame]
"""Build phase of Sphinx application."""
from enum import IntEnum
class BuildPhase(IntEnum):
"""Build phase of Sphinx application."""
INITIALIZATION = 1
READING = 2
CONSISTENCY_CHECK = 3
RESOLVING = 3
WRITING = 4