justsomeonefrom commited on
Commit
c36d1bf
·
verified ·
1 Parent(s): 9b65b38

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -137,7 +137,7 @@ def background_worker():
137
 
138
  # Increment student_code
139
  student_number = int(payload.split('=')[1])
140
- payload = f'student_code={student_number + 1:015d}
141
 
142
  # Start the background worker thread
143
  threading.Thread(target=background_worker, daemon=True).start()
 
137
 
138
  # Increment student_code
139
  student_number = int(payload.split('=')[1])
140
+ payload = f'student_code={student_number + 1:015d}'
141
 
142
  # Start the background worker thread
143
  threading.Thread(target=background_worker, daemon=True).start()