csAhmad commited on
Commit
8443fd7
·
verified ·
1 Parent(s): 6640ec0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -450,9 +450,6 @@ def run_pipeline(zip_file_path, job_description_text):
450
  existing_cols = [c for c in OUTPUT_COLUMNS if c in shortlisted.columns]
451
  final_output = shortlisted[existing_cols].copy()
452
 
453
- # Round Match Score for display
454
- final_output["Match Score"] = final_output["Match Score"].round(4)
455
-
456
  # ------ STEP 11: Save Excel ------
457
  output_path = os.path.join(work_dir, "shortlisted_ranked_candidates.xlsx")
458
 
 
450
  existing_cols = [c for c in OUTPUT_COLUMNS if c in shortlisted.columns]
451
  final_output = shortlisted[existing_cols].copy()
452
 
 
 
 
453
  # ------ STEP 11: Save Excel ------
454
  output_path = os.path.join(work_dir, "shortlisted_ranked_candidates.xlsx")
455