ravinder2024 commited on
Commit
c2d845c
·
verified ·
1 Parent(s): dbc4bfc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -172,7 +172,7 @@ elif upload_choice == "Upload Video":
172
  video_source = cv2.VideoCapture(tfile.name)
173
  video_feed(video_source)
174
 
175
- Display recent SQLite records
176
  st.markdown("### Recent Records")
177
  conn = sqlite3.connect(DB_NAME)
178
  cursor = conn.cursor()
@@ -185,6 +185,5 @@ for record in records:
185
  col1.write(f"**Name**: {record[0]}")
186
  col2.write(f"**Emotion**: {record[1]}")
187
  col3.write(f"**Timestamp**: {record[2]}")
188
-
189
-
190
 
 
172
  video_source = cv2.VideoCapture(tfile.name)
173
  video_feed(video_source)
174
 
175
+ # Display recent SQLite records
176
  st.markdown("### Recent Records")
177
  conn = sqlite3.connect(DB_NAME)
178
  cursor = conn.cursor()
 
185
  col1.write(f"**Name**: {record[0]}")
186
  col2.write(f"**Emotion**: {record[1]}")
187
  col3.write(f"**Timestamp**: {record[2]}")
188
+
 
189