Source code for ocr.types from enum import Enum from typing import Literal [docs] class Environment(str, Enum): QA = 'qa' STAGING = 'staging' PRODUCTION = 'production' [docs] class Platform(str, Enum): COILED = 'coiled' LOCAL = 'local' [docs] class RiskType(str, Enum): """Available risk types for calculation.""" FIRE = 'fire' RegionType = Literal['tract', 'county']