Source code for elsheeto.models.common
from enum import Enum
[docs]
class ParsedSheetType(str, Enum):
"""Resulting sheet type after raw CSV parsing in stage 1."""
#: Sectionless.
SECTIONLESS = "sectionless"
#: Multi-section sheet.
SECTIONED = "sectioned"