ibibek commited on
Commit
f468515
·
1 Parent(s): 9b99d72

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -65,10 +65,10 @@ if user_input:
65
  result = [i for i in e['@graph']]
66
  # display result
67
  st.subheader('Prefix namespaces mentioned in the example:')
68
- # st.text_area("", e['@context'], height=200)
69
- st.json(e['@context'])
70
  st.subheader('Full example:')
71
- # st.text_area("", result, height=400)
72
- st.json(result)
73
 
74
 
 
65
  result = [i for i in e['@graph']]
66
  # display result
67
  st.subheader('Prefix namespaces mentioned in the example:')
68
+ st.text_area("", e['@context'], height=200)
69
+ #st.json(e['@context'])
70
  st.subheader('Full example:')
71
+ st.text_area("", result, height=400)
72
+ #st.json(result)
73
 
74