Cleanup: remove stray ellipsis in update_todo exception handler

This commit is contained in:
George Antonopoulos
2025-08-27 13:14:02 +01:00
parent d014e336ea
commit 632a5769b0

View File

@@ -362,8 +362,6 @@ async def update_todo(project_id: str, todo_id: str,
"message": "Todo updated successfully"
}
except Exception as e:
# existing exception handling…
...
logger.error(f"Error updating todo: {e}")
if "401" in str(e) and "expired" in str(e).lower():
return {