From 46b70d08cbd380ff96614eee4a6c8b47a490428b Mon Sep 17 00:00:00 2001 From: Varun Nuthalapati Date: Sat, 25 Apr 2026 12:03:58 -0700 Subject: [PATCH] fix: remove duplicate description setter in TaskStar --- galaxy/constellation/task_star.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/galaxy/constellation/task_star.py b/galaxy/constellation/task_star.py index 266551378..760825f39 100644 --- a/galaxy/constellation/task_star.py +++ b/galaxy/constellation/task_star.py @@ -172,21 +172,6 @@ def tips(self, value: List[str]) -> None: self._tips = value self._updated_at = datetime.now(timezone.utc) - @description.setter - def description(self, value: str) -> None: - """ - Set the task description. - - :param value: New task description - :raises ValueError: If task is currently running - """ - if self._status == TaskStatus.RUNNING: - raise ValueError( - f"Cannot modify description of running task {self._task_id}" - ) - self._description = value - self._updated_at = datetime.now(timezone.utc) - async def execute( self, device_manager: ConstellationDeviceManager ) -> ExecutionResult: