Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -52,7 +52,7 @@ if st.button("I want to remove my data!"):
|
|
52 |
|
53 |
|
54 |
issue_text = "I want to remove the following repositories.\n\n"
|
55 |
-
issue_text += "- "+ "\n - ".join([repo if exclude for repo, exclude in zip(repos, exlcude_repo)])
|
56 |
st.code(issue_text)
|
57 |
|
58 |
st.text("Open an issue with the above text in the opt-out repo [here]https://github.com/bigcode-project/opt-out/issues/new)")
|
|
|
52 |
|
53 |
|
54 |
issue_text = "I want to remove the following repositories.\n\n"
|
55 |
+
issue_text += "- "+ "\n - ".join([repo if exclude for (repo, exclude) in zip(repos, exlcude_repo)])
|
56 |
st.code(issue_text)
|
57 |
|
58 |
st.text("Open an issue with the above text in the opt-out repo [here]https://github.com/bigcode-project/opt-out/issues/new)")
|