Update test_repo.py
Browse files- test_repo.py +0 -1
test_repo.py
CHANGED
@@ -72,7 +72,6 @@ class TestRepo(datasets.GeneratorBasedBuilder):
|
|
72 |
with open(filepath, encoding="utf-8") as f:
|
73 |
for key, row in enumerate(f):
|
74 |
data = json.loads(row)
|
75 |
-
print(data)
|
76 |
yield key, {
|
77 |
"prompt": data.get("prompt", ""),
|
78 |
"question": data["question"],
|
|
|
72 |
with open(filepath, encoding="utf-8") as f:
|
73 |
for key, row in enumerate(f):
|
74 |
data = json.loads(row)
|
|
|
75 |
yield key, {
|
76 |
"prompt": data.get("prompt", ""),
|
77 |
"question": data["question"],
|