From d7de6544d9b258dc55db10a1823c86ffd6d0ff4e Mon Sep 17 00:00:00 2001 From: Carl Baillargeon Date: Thu, 16 May 2024 17:46:58 -0400 Subject: [PATCH] Remove unrelated changed --- anta/result_manager/models.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/anta/result_manager/models.py b/anta/result_manager/models.py index 7e98c01a8..c53947ee4 100644 --- a/anta/result_manager/models.py +++ b/anta/result_manager/models.py @@ -5,8 +5,6 @@ from __future__ import annotations -from typing import Any - from pydantic import BaseModel from anta.custom_types import TestStatus @@ -34,8 +32,6 @@ class TestResult(BaseModel): result: TestStatus = "unset" messages: list[str] = [] custom_field: str | None = None - json_output: dict[str, Any] | None = None - text_output: str | None = None def is_success(self, message: str | None = None) -> None: """Set status to success.