Remove redundant argument
Browse files
wikidata_simplequestions.py
CHANGED
|
@@ -114,7 +114,7 @@ class WikidataSimpleQuestions(datasets.GeneratorBasedBuilder):
|
|
| 114 |
),
|
| 115 |
]
|
| 116 |
|
| 117 |
-
def _generate_examples(self, filepath
|
| 118 |
with open(filepath, encoding="utf-8") as f:
|
| 119 |
for key, row in enumerate(f):
|
| 120 |
data = row.split("\t")
|
|
|
|
| 114 |
),
|
| 115 |
]
|
| 116 |
|
| 117 |
+
def _generate_examples(self, filepath):
|
| 118 |
with open(filepath, encoding="utf-8") as f:
|
| 119 |
for key, row in enumerate(f):
|
| 120 |
data = row.split("\t")
|