From d7fab682c94ff6c323004e448545955c3ef7a136 Mon Sep 17 00:00:00 2001 From: Pavel Date: Sat, 10 Aug 2024 08:44:49 +0300 Subject: [PATCH] fix --- app.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app.py b/app.py index a4fb0f3..815792f 100644 --- a/app.py +++ b/app.py @@ -67,7 +67,6 @@ def latex_copy(inp_code): frame.columns = verticies frame.index = verticies ltx_code = generate_from_matrix(adj_matrix=frame) - json_tab, matrix_tab, latex_tab = lcol.tabs(['JSON', 'Matrix', 'LaTeX']) with latex_tab: st.code(ltx_code) @@ -77,6 +76,4 @@ def latex_copy(inp_code): st.json(edges, expanded=False) with matrix_tab: st.table(frame) - - rcol.latex(ltx_code) - \ No newline at end of file + rcol.latex(ltx_code) \ No newline at end of file