Alternative for linter

This commit is contained in:
Dankrad Feist 2023-03-14 22:22:23 +00:00
parent 2d4bfabceb
commit 3e281e7457
No known key found for this signature in database
GPG Key ID: 6815E6A20BEBBABA

View File

@ -44,8 +44,9 @@ Note: This API is *unstable*. `get_blobs_and_kzg_commitments` and `get_payload`
Implementers may also retrieve blobs individually per transaction.
```python
def get_blobs_and_kzg_commitments(payload_id: PayloadId) -> \
Tuple[Sequence[Blob], Sequence[KZGCommitment], Sequence[KZGProof]]:
def get_blobs_and_kzg_commitments(
payload_id: PayloadId
) -> Tuple[Sequence[Blob], Sequence[KZGCommitment], Sequence[KZGProof]]:
# pylint: disable=unused-argument
...
```