From 672cade54a137b50cf3761e2496d032ccc0879fa Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Mon, 4 Jun 2018 08:16:22 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Add=20validator=20idea=20comment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- check_in/github_checks_requests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_in/github_checks_requests.py b/check_in/github_checks_requests.py index 0add627..8efa599 100644 --- a/check_in/github_checks_requests.py +++ b/check_in/github_checks_requests.py @@ -81,7 +81,7 @@ def identifier_up_to_20(self, attribute, value): class CheckOutput: title: str = str_attrib() summary: str = str_attrib() - text: Optional[str] = optional_str_attrib() + text: Optional[str] = optional_str_attrib() # it looks like it's not optional; it can be empty string, but not missing annotations: List[CheckAnnotation] = optional_list_attrib(converter=partial(optional_list_converter, convert_to_cls=CheckAnnotation)) images: List[CheckImage] = optional_list_attrib(converter=partial(optional_list_converter, convert_to_cls=CheckImage))