Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -48,12 +48,12 @@ if st.button("Check!"):# or username:
|
|
48 |
#if st.button("I want to remove my data!"):
|
49 |
exclude_repo = []
|
50 |
for repo in repos:
|
51 |
-
exclude_repo.append(st.checkbox(
|
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.
|
58 |
|
59 |
print("Full time", time.time()-t_0)
|
|
|
48 |
#if st.button("I want to remove my data!"):
|
49 |
exclude_repo = []
|
50 |
for repo in repos:
|
51 |
+
exclude_repo.append(st.checkbox(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.markdown("Open an issue with the above text in the opt-out repo [here]https://github.com/bigcode-project/opt-out/issues/new)")
|
58 |
|
59 |
print("Full time", time.time()-t_0)
|