Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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
|
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])
|