lvwerra HF Staff commited on
Commit
ab5bf4c
·
1 Parent(s): 0f2c528

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -51,7 +51,7 @@ if st.button("Check!"):# or username:
51
  exclude_repo.append(st.checkbox(f"`{repo}`"))
52
 
53
  issue_text = "I want to remove the following repositories.\n\n"
54
- issue_text += "- "+ "\n - ".join([repo for (repo, exclude) in zip(repos, exlcude_repo) if exclude])
55
  st.code(issue_text)
56
 
57
  st.text("Open an issue with the above text in the opt-out repo [here]https://github.com/bigcode-project/opt-out/issues/new)")
 
51
  exclude_repo.append(st.checkbox(f"`{repo}`"))
52
 
53
  issue_text = "I want to remove the following repositories.\n\n"
54
+ issue_text += "- "+ "\n - ".join([repo for (repo, exclude) in zip(repos, exclude_repo) if exclude])
55
  st.code(issue_text)
56
 
57
  st.text("Open an issue with the above text in the opt-out repo [here]https://github.com/bigcode-project/opt-out/issues/new)")