Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pdumin committed Aug 10, 2024
1 parent 6e964f5 commit d7fab68
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -77,6 +76,4 @@ def latex_copy(inp_code):
st.json(edges, expanded=False)
with matrix_tab:
st.table(frame)

rcol.latex(ltx_code)

rcol.latex(ltx_code)

0 comments on commit d7fab68

Please sign in to comment.