From 6f45250af66c9f04d3ec918e9d3f5a8a9e183270 Mon Sep 17 00:00:00 2001 From: Carl Baillargeon Date: Tue, 10 Sep 2024 11:32:05 -0400 Subject: [PATCH] Update anta/reporter/csv_reporter.py --- anta/reporter/csv_reporter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/anta/reporter/csv_reporter.py b/anta/reporter/csv_reporter.py index c07fb3114..570da9e6b 100644 --- a/anta/reporter/csv_reporter.py +++ b/anta/reporter/csv_reporter.py @@ -68,6 +68,7 @@ def convert_to_list(cls, result: TestResult) -> list[str]: Returns ------- list[str] + TestResult converted into a list. """ message = cls.split_list_to_txt_list(result.messages) if len(result.messages) > 0 else "" categories = cls.split_list_to_txt_list(result.categories) if len(result.categories) > 0 else "None"