From 242d7f6a77e886750c27bacfb165cb1ca0a67ecd Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Fri, 14 Mar 2025 11:59:21 +0100 Subject: [PATCH] made some entries to the dataset default to "" --- dataset.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dataset.py b/dataset.py index 893e8dd..73fe264 100644 --- a/dataset.py +++ b/dataset.py @@ -5,7 +5,7 @@ import json @dataclass class FileData: path: str - content: str # Not sure about this, maybe we should just keep the path and extract the contents dynamically (boh) + content: str = "" # Not sure about this, maybe we should just keep the path and extract the contents dynamically (boh) @dataclass class Metadata: @@ -13,8 +13,8 @@ class Metadata: pr_number: int merge_commit_sha: str # to checkout for the tests successful: bool - reason_for_failure: str - last_cmd_error_msg: str + reason_for_failure: str = "" + last_cmd_error_msg: str = "" @dataclass class DatasetEntry: