Futyn-Maker commited on
Commit
aec7a71
·
1 Parent(s): a25103f

Fix syntax errors

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -90,8 +90,8 @@ def format_pipeline_results(results: Dict[str, Any]) -> str:
90
 
91
  # Header
92
  html_parts.append(
93
- f"<h3 style='color: #333; margin-bottom: 20px;'>Found {
94
- len(constructions)} construction(s):</h3>")
95
 
96
  # Process each construction
97
  for i, construction in enumerate(constructions, 1):
 
90
 
91
  # Header
92
  html_parts.append(
93
+ "<h3 style='color: #333; margin-bottom: 20px;'>Found {} construction(s):</h3>".format(
94
+ len(constructions)))
95
 
96
  # Process each construction
97
  for i, construction in enumerate(constructions, 1):