Skip to content

core.steps

Definitions related to the workflow steps of the import wizard.

The :class:Step enumeration lists every page in the sequence and the TITLE mapping assigns a short name used for the sidebar and navigation.

Step

Bases: Enum

Enumerates all logical steps of the import wizard.

The order of members defines the sequence in which the steps appear.

Source code in src/core/steps.py
13
14
15
16
17
18
19
20
class Step(Enum):
    """
    Enumerates all logical steps of the import wizard.

    The order of members defines the sequence in which the steps appear.
    """

    UPLOAD, PDF, WORKSHEET, DATAPREP, FILTER, GEODATA, MAPPING, MANUAL, PREVIEW, EXPORT = range(10)