File tree Expand file tree Collapse file tree 1 file changed +17
-19
lines changed Expand file tree Collapse file tree 1 file changed +17
-19
lines changed Original file line number Diff line number Diff line change @@ -1430,27 +1430,25 @@ def _call_server(
14301430 if isinstance (h .validated_output , AnyObject )
14311431 else h .validated_output
14321432 ),
1433- reasks = (
1433+ reasks = list (
14341434 [
1435- (
1436- FieldReAsk (
1437- incorrect_value = r .to_dict ().get (
1438- "incorrect_value"
1439- ),
1440- path = r .to_dict ().get ("path" ),
1441- fail_results = [
1442- FailResult (
1443- error_message = r .to_dict ().get (
1444- "error_message"
1445- ),
1446- fix_value = r .to_dict ().get (
1447- "fix_value"
1448- ),
1449- )
1450- ],
1451- )
1452- for r in h .reasks # type: ignore
1435+ FieldReAsk (
1436+ incorrect_value = r .to_dict ().get (
1437+ "incorrect_value"
1438+ ),
1439+ path = r .to_dict ().get ("path" ),
1440+ fail_results = [
1441+ FailResult (
1442+ error_message = r .to_dict ().get (
1443+ "error_message"
1444+ ),
1445+ fix_value = r .to_dict ().get (
1446+ "fix_value"
1447+ ),
1448+ )
1449+ ],
14531450 )
1451+ for r in h .reasks # type: ignore
14541452 ]
14551453 if h .reasks != UNSET
14561454 else []
You can’t perform that action at this time.
0 commit comments