Maryam Ilka commited on
Commit
6b213d7
·
verified ·
1 Parent(s): 3513856

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -421,6 +421,8 @@ def save_to_sheet(data):
421
 
422
  row_data = [
423
  data.get("start_time", ""), # زمان شروع
 
 
424
  data.get("scenario_type", ""),
425
  data.get("price", ""),
426
  data.get("age", ""),
@@ -457,11 +459,7 @@ def save_to_sheet(data):
457
  data.get("pricing_method", ""),
458
  data.get("price_increase", ""),
459
  data.get("explanation_received", ""),
460
- data.get("explanation_type", ""),
461
-
462
- # زمان‌سنجی
463
- data.get("end_time", ""), # زمان پایان
464
- data.get("completion_time", "") # مدت زمان تکمیل (ثانیه)
465
  ]
466
 
467
  worksheet.append_row(row_data)
 
421
 
422
  row_data = [
423
  data.get("start_time", ""), # زمان شروع
424
+ data.get("end_time", ""), # زمان پایان
425
+ data.get("completion_time", ""), # مدت زمان تکمیل (ثانیه)
426
  data.get("scenario_type", ""),
427
  data.get("price", ""),
428
  data.get("age", ""),
 
459
  data.get("pricing_method", ""),
460
  data.get("price_increase", ""),
461
  data.get("explanation_received", ""),
462
+ data.get("explanation_type", "")
 
 
 
 
463
  ]
464
 
465
  worksheet.append_row(row_data)