Skip to content

Commit c030f7e

Browse files
committed
Download Button removed
1 parent 8f9a6a8 commit c030f7e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/common.py

-7
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,6 @@ def show_table(df, title="", col="", download=True):
124124
col = col
125125
else:
126126
col = st
127-
if download:
128-
col.download_button(
129-
f"Download Table",
130-
df.to_csv(sep="\t").encode("utf-8"),
131-
title.replace(" ", "-") + ".tsv",
132-
key=uuid.uuid1(),
133-
)
134127
col.dataframe(df, use_container_width=True)
135128

136129

0 commit comments

Comments
 (0)