---------------------------------------------------------------------- This is the API documentation for the gdtest_flit_enums library. ---------------------------------------------------------------------- ## Enumerations Enum types Color(*values) Available color options. Each color maps to an RGB hex string value. Attributes: RED: Bright red (#FF0000). GREEN: Bright green (#00FF00). BLUE: Bright blue (#0000FF). YELLOW: Bright yellow (#FFFF00). Status(*values) Task lifecycle status. Tracks the progression of a task from creation to completion. Attributes: PENDING: Task has been created but not started. RUNNING: Task is currently executing. COMPLETED: Task finished successfully. FAILED: Task encountered an error. Priority(*values) Task priority levels. Higher numeric values indicate greater urgency. Attributes: LOW: Low priority (1). MEDIUM: Medium priority (2). HIGH: High priority (3). CRITICAL: Critical priority (4). ## Functions Public functions get_label(status: gdtest_flit_enums.types.Status) -> str Get a human-readable label for a status. Args: status: The status enum value. Returns: A formatted label string. Example: >>> get_label(Status.RUNNING) 'In Progress'