lvwerra HF Staff commited on
Commit
11a71fe
·
1 Parent(s): a6e9c8b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ if st.button("Check!"):# or username:
49
  with st.expander("I want to opt-out"):
50
  exclude_repo = []
51
  for repo in repos:
52
- exclude_repo.append(st.checkbox(repo), value=True)
53
 
54
  issue_text = "I want to remove the following repositories.\n\n"
55
  issue_text += "- "+ "\n - ".join([repo for (repo, exclude) in zip(repos, exclude_repo) if exclude])
 
49
  with st.expander("I want to opt-out"):
50
  exclude_repo = []
51
  for repo in repos:
52
+ exclude_repo.append(st.checkbox(repo, value=True))
53
 
54
  issue_text = "I want to remove the following repositories.\n\n"
55
  issue_text += "- "+ "\n - ".join([repo for (repo, exclude) in zip(repos, exclude_repo) if exclude])