From f5275b3c1b71e93756406bd680abc8476c69d7ff Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Fri, 14 Mar 2025 15:20:59 +0100 Subject: [PATCH] making assumption that the entry will be successful, then setting it to false when something goes wrong --- dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataset.py b/dataset.py index a1f1a52..1ac29ba 100644 --- a/dataset.py +++ b/dataset.py @@ -12,7 +12,7 @@ class Metadata: repo: str # the name of the repo, with style XXX/YYY pr_number: int merge_commit_sha: str # to checkout for the tests - successful: bool + successful: bool = True reason_for_failure: str = "" last_cmd_error_msg: str = ""