@@ -249,7 +249,10 @@ async def main():
249249 (MathProblem(problem="5 * 4"), MathAnswer(thinking="5 * 4 = 20", answer="20")),
250250 (MathProblem(problem="10 - 3"), MathAnswer(thinking="10 - 3 = 7", answer="7")),
251251 (MathProblem(problem="8 / 2"), MathAnswer(thinking="8 / 2 = 4", answer="4")),
252- (MathProblem(problem="3 + 3 + 3"), MathAnswer(thinking="3 + 3 + 3 = 9", answer="9")),
252+ (
253+ MathProblem(problem="3 + 3 + 3"),
254+ MathAnswer(thinking="3 + 3 + 3 = 9", answer="9"),
255+ ),
253256 (MathProblem(problem="7 * 2"), MathAnswer(thinking="7 * 2 = 14", answer="14")),
254257 ]
255258
@@ -398,7 +401,6 @@ async def main():
398401
399402import synalinks
400403
401-
402404# =============================================================================
403405# Data Models
404406# =============================================================================
@@ -478,7 +480,7 @@ async def main():
478480 ],
479481 dtype = "object" ,
480482 )
481- y_test = np .array (
483+ _y_test = np .array ( # noqa: F841
482484 [
483485 MathAnswer (thinking = "4 + 5 = 9" , answer = "9" ),
484486 MathAnswer (thinking = "6 * 3 = 18" , answer = "18" ),
0 commit comments