hollyyfc commited on
Commit
c47cb35
1 Parent(s): 41921ba

Update tidytuesday_for_python.py

Browse files
Files changed (1) hide show
  1. tidytuesday_for_python.py +1 -1
tidytuesday_for_python.py CHANGED
@@ -124,6 +124,6 @@ class TidyTuesdayPython(datasets.GeneratorBasedBuilder):
124
  def _generate_examples(self, filepath):
125
  logging.info("generating examples from = %s", filepath)
126
  with open(filepath, "r") as j:
127
- tidytuesday_json = json.load()
128
  for record in tidytuesday_json:
129
  yield record
 
124
  def _generate_examples(self, filepath):
125
  logging.info("generating examples from = %s", filepath)
126
  with open(filepath, "r") as j:
127
+ tidytuesday_json = json.load(j)
128
  for record in tidytuesday_json:
129
  yield record