Datasets:
Update files from the datasets library (from 1.6.1)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.6.1
- mutual_friends.py +1 -1
mutual_friends.py
CHANGED
@@ -144,7 +144,7 @@ class MutualFriends(datasets.GeneratorBasedBuilder):
|
|
144 |
]
|
145 |
|
146 |
def _generate_examples(self, filepath):
|
147 |
-
"""
|
148 |
with open(filepath, encoding="utf-8") as f:
|
149 |
mutualfriends = json.load(f)
|
150 |
|
|
|
144 |
]
|
145 |
|
146 |
def _generate_examples(self, filepath):
|
147 |
+
"""Yields examples."""
|
148 |
with open(filepath, encoding="utf-8") as f:
|
149 |
mutualfriends = json.load(f)
|
150 |
|