carisackc commited on
Commit
d1bb5a0
1 Parent(s): b4adba1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -48,13 +48,13 @@ patientid = col3.write(f"Patient ID: {patient} ")
48
  admissionid =col4.write(f"Admission ID: {HospitalAdmission} ")
49
 
50
  col1, col2, col3, col4 = st.columns(4)
51
- with col1
52
  st.button('Admission')
53
- with col2
54
  st.button('Daily Narrative')
55
- with col3
56
  st.button('Discharge Plan')
57
- with col4
58
  st.button('Social Notes')
59
  #_min_length = col1.number_input("Minimum Length", value=_min_length)
60
  #_max_length = col2.number_input("Maximun Length", value=_max_length)
 
48
  admissionid =col4.write(f"Admission ID: {HospitalAdmission} ")
49
 
50
  col1, col2, col3, col4 = st.columns(4)
51
+ with col1:
52
  st.button('Admission')
53
+ with col2:
54
  st.button('Daily Narrative')
55
+ with col3:
56
  st.button('Discharge Plan')
57
+ with col4:
58
  st.button('Social Notes')
59
  #_min_length = col1.number_input("Minimum Length", value=_min_length)
60
  #_max_length = col2.number_input("Maximun Length", value=_max_length)