MENG21 commited on
Commit
9430e9e
·
1 Parent(s): 6fb0ecc

Fix variable reference in student ID display within main function of app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -157,7 +157,7 @@ def main():
157
 
158
  with col1:
159
  st.markdown("<p class='big-font'>ID</p>", unsafe_allow_html=True)
160
- st.write(f"{record['student_id']}")
161
 
162
  with col2:
163
  st.markdown("<p class='big-font'>Grade</p>", unsafe_allow_html=True)
 
157
 
158
  with col1:
159
  st.markdown("<p class='big-font'>ID</p>", unsafe_allow_html=True)
160
+ st.write(f"{student['student_id']}")
161
 
162
  with col2:
163
  st.markdown("<p class='big-font'>Grade</p>", unsafe_allow_html=True)