camparchimedes commited on
Commit
eadc6c1
·
verified ·
1 Parent(s): 87a0489

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -174,15 +174,15 @@ async def handle_message(message: cl.Message):
174
  table = "| Field | Information |\n|---|---|\n"
175
 
176
  fields_mapping = [
177
- ('booking_id', booking_data['booking_id']),
178
- ('full_name', booking_data['full_name']),
179
- ('amount', booking_data['amount']),
180
- ('checkin', booking_data['checkin']),
181
- ('checkout', booking_data['checkout']),
182
- ('address', booking_data['address']),
183
- ('user_id', booking_data['user_id']),
184
- ('infotext', booking_data['infotext']),
185
- ('included', booking_data['included'])
186
  ]
187
 
188
  for field, display_name in fields_mapping:
 
174
  table = "| Field | Information |\n|---|---|\n"
175
 
176
  fields_mapping = [
177
+ ('booking_id', 'booking_id'),
178
+ ('full_name', 'full_name'),
179
+ ('amount', 'amount'),
180
+ ('checkin', 'checkin'),
181
+ ('checkout', 'checkout'),
182
+ ('address', 'address'),
183
+ ('user_id', 'user_id'),
184
+ ('infotext', 'infotext'),
185
+ ('included', 'included')
186
  ]
187
 
188
  for field, display_name in fields_mapping: