Skip to content

Commit 9f82146

Browse files
committed
Update app link
1 parent 22b45f8 commit 9f82146

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

app.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,28 +49,23 @@
4949
# Title
5050
st.markdown(
5151
f"""
52-
To download from Anonymous Github automatically, click on "Downloader Script" and run:
52+
To download the code from our Anonymous Github Repo ([link](https://anonymous.4open.science/r/DPPBench)) automatically, click on "Downloader Script" and run:
5353
`python3 download_anonymous_github.py`
5454
in the terminal. This will download the repository to the current directory.
5555
"""
5656
)
5757

58-
col1, col2 = st.columns([1, 1])
59-
6058

6159
# Download button for anonymous github
6260
with open("download_anonymous_github.py", "r") as f:
6361
download_script = f.read()
6462

65-
col1.download_button(
63+
st.download_button(
6664
label="Downloader Script ⬇️",
6765
data=download_script,
6866
file_name="download_anonymous_github.py",
6967
)
7068

71-
if col2.button("Code from Anonymous Github ↗️", key="download", type="secondary"):
72-
webbrowser.open_new_tab("https://anonymous.4open.science/r/DPPBench")
73-
7469
# Divider
7570
st.markdown("---")
7671

0 commit comments

Comments
 (0)