From 398fe7220ea52aced36dd78a9c67c66729307741 Mon Sep 17 00:00:00 2001 From: Chandrashekhar R <73425927+cr2007@users.noreply.github.com> Date: Thu, 11 Jul 2024 14:37:00 +0400 Subject: [PATCH] Fixes Pylint `line-too-long` error --- cambai/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cambai/__init__.py b/cambai/__init__.py index 499b444..ed8c66e 100644 --- a/cambai/__init__.py +++ b/cambai/__init__.py @@ -119,8 +119,8 @@ class TaskStatus(TypedDict): - "TIMEOUT": The task timed out before completion. - "ERROR": An error occurred during the task. - "PAYMENT_REQUIRED": Payment is required to complete the task. - - `run_id` (int, Optional): The unique identifier for the task run. It can be None if the task - has not started yet. + - `run_id` (int, Optional): The unique identifier for the task run. It can be None if the + task has not started yet. """ status: Literal["SUCCESS", "PENDING", "TIMEOUT", "ERROR", "PAYMENT_REQUIRED"]