comicbox.print

[docs] module comicbox.print

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
"""Print phases enum."""

from enum import Enum


class PrintPhases(Enum):
    """Items that can be printed."""

    VERSION = "v"
    FILE_TYPE = "t"
    FILE_NAMES = "f"

    # Metadata
    SOURCE = "s"
    LOADED = "l"
    NORMALIZED = "n"
    MERGED = "m"
    COMPUTED = "c"
    METADATA_OLD = "d"
    METADATA = "p"