Hey all, does anybody know how to properly return ...
# python
e
Hey all, does anybody know how to properly return
CheckResult
object with failures? I've tried
return CheckResult(None, check_failures)
,
return CheckResult([], check_failures)
and
return CheckResult(_news, check_failures)
but each of them raise a different error.