burtenshaw commited on
Commit
a0e5687
·
1 Parent(s): 5fc598c

push to username split

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -90,7 +90,7 @@ def push_results_to_hub(user_answers, token: gr.OAuthToken | None):
90
  "grade": grade,
91
  }
92
  )
93
- new_ds.push_to_hub(repo_id)
94
  return f"Your responses have been submitted to the Hub! Final grade: {grade:.1%}"
95
 
96
 
 
90
  "grade": grade,
91
  }
92
  )
93
+ new_ds.push_to_hub(repo_id=repo_id, split=user_info["name"])
94
  return f"Your responses have been submitted to the Hub! Final grade: {grade:.1%}"
95
 
96