Skip to content

Commit 83dc904

Browse files
committed
don't validate when looking for candidate
1 parent 9f22028 commit 83dc904

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eval_protocol/cli_commands/create_rft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def _extract_jsonl_from_input_dataset(test_file_path: str, test_func_name: str)
153153
candidate_paths.append(os.path.abspath(os.path.join(os.getcwd(), dataset_path)))
154154

155155
for candidate in candidate_paths:
156-
if os.path.isfile(candidate) and _validate_dataset_jsonl(candidate):
156+
if os.path.isfile(candidate):
157157
return candidate
158158
return None
159159
except Exception:

0 commit comments

Comments
 (0)