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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -45,12 +45,11 @@ if st.button("Check!"):# or username:
45
  st.text("**No**, your code is not in The Stack.")
46
  print("Time to check", time.time()-t_start)
47
 
48
- if st.button("I want to remove my data!"):
49
  exclude_repo = []
50
  for repo in repos:
51
  exclude_repo.append(st.checkbox(f"`{repo}`"))
52
 
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, exlcude_repo) if exclude])
56
  st.code(issue_text)
 
45
  st.text("**No**, your code is not in The Stack.")
46
  print("Time to check", time.time()-t_start)
47
 
48
+ #if st.button("I want to remove my data!"):
49
  exclude_repo = []
50
  for repo in repos:
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)