Skip to content

Commit c245955

Browse files
committed
format: Format
1 parent 700b9d2 commit c245955

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

build_tools/sharpy_dogfood/orchestrator.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,10 @@ async def run_iteration(
588588
print(" ✓ Output matches expected (exact)", file=sys.stderr)
589589
elif _outputs_equivalent(expected_normalized, actual_normalized):
590590
# Float-tolerant match
591-
print(" ✓ Output matches expected (with float tolerance)", file=sys.stderr)
591+
print(
592+
" ✓ Output matches expected (with float tolerance)",
593+
file=sys.stderr,
594+
)
592595
else:
593596
# Fall back to AI-assisted comparison for fuzzy matching
594597
verify_result = await self._verify_output(
@@ -811,7 +814,9 @@ async def _generate_and_validate_code(
811814
print("\n[2/4] Validating against spec...", file=sys.stderr)
812815
val_result = await self._validate_code(code)
813816
if not val_result.success:
814-
print(f" Validation backend error: {val_result.error}", file=sys.stderr)
817+
print(
818+
f" Validation backend error: {val_result.error}", file=sys.stderr
819+
)
815820
last_error = f"Validation backend error: {val_result.error}"
816821
if attempt < max_attempts:
817822
print(
@@ -1060,7 +1065,10 @@ async def run_multifile_iteration(
10601065
print(" ✓ Output matches expected (exact)", file=sys.stderr)
10611066
elif _outputs_equivalent(expected_normalized, actual_normalized):
10621067
# Float-tolerant match
1063-
print(" ✓ Output matches expected (with float tolerance)", file=sys.stderr)
1068+
print(
1069+
" ✓ Output matches expected (with float tolerance)",
1070+
file=sys.stderr,
1071+
)
10641072
else:
10651073
verify_result = await self._verify_output(
10661074
files.get("main.spy", ""), expected_output, actual_output

0 commit comments

Comments
 (0)