diff --git a/specs/_features/eip7594/polynomial-commitments-sampling.md b/specs/_features/eip7594/polynomial-commitments-sampling.md index 2b96716ad..9cd862589 100644 --- a/specs/_features/eip7594/polynomial-commitments-sampling.md +++ b/specs/_features/eip7594/polynomial-commitments-sampling.md @@ -613,8 +613,13 @@ def recover_polynomial(cell_ids: Sequence[CellID], missing_cell_ids = [cell_id for cell_id in range(CELLS_PER_BLOB) if cell_id not in cell_ids] zero_poly_coeff, zero_poly_eval, zero_poly_eval_brp = construct_vanishing_polynomial(missing_cell_ids) - eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv = \ - recover_shifted_data(cell_ids, cells, zero_poly_eval, zero_poly_coeff, roots_of_unity_extended) + eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv = recover_shifted_data( + cell_ids, + cells, + zero_poly_eval, + zero_poly_coeff, + roots_of_unity_extended, + ) reconstructed_data = recover_original_data( eval_shifted_extended_evaluation,