mlbench123 commited on
Commit
92a0613
·
verified ·
1 Parent(s): f571da5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -346,16 +346,16 @@ class PropertyFormulaAnalyzer:
346
  results_display += f"**Formula:** `{info['formula']}`\n"
347
  results_display += f"**Result:** {info['formatted_result']}\n\n"
348
 
349
- if non_computable_formulas:
350
- results_display += "\n## ❌ Non-Computable Formulas\n\n"
351
- for cell_ref, info in sorted(non_computable_formulas.items()):
352
- results_display += f"### {cell_ref}: {info['description']}\n"
353
- results_display += f"**Formula:** `{info['formula']}`\n"
354
- if info.get('missing_variables'):
355
- results_display += f"**Missing Variables:** {', '.join(info['missing_variables'])}\n"
356
- if info.get('error'):
357
- results_display += f"**Error:** {info['error']}\n"
358
- results_display += "\n"
359
 
360
  # Create JSON output
361
  json_output = {
 
346
  results_display += f"**Formula:** `{info['formula']}`\n"
347
  results_display += f"**Result:** {info['formatted_result']}\n\n"
348
 
349
+ # if non_computable_formulas:
350
+ # results_display += "\n## ❌ Non-Computable Formulas\n\n"
351
+ # for cell_ref, info in sorted(non_computable_formulas.items()):
352
+ # results_display += f"### {cell_ref}: {info['description']}\n"
353
+ # results_display += f"**Formula:** `{info['formula']}`\n"
354
+ # if info.get('missing_variables'):
355
+ # results_display += f"**Missing Variables:** {', '.join(info['missing_variables'])}\n"
356
+ # if info.get('error'):
357
+ # results_display += f"**Error:** {info['error']}\n"
358
+ # results_display += "\n"
359
 
360
  # Create JSON output
361
  json_output = {