Add punctuation to docstring

This commit is contained in:
Justin Traglia 2023-07-15 17:53:10 +02:00
parent fafd48f06a
commit 16b1afb1ef

View File

@ -304,7 +304,7 @@ class BeaconBlockBody(capella.BeaconBlockBody):
```python ```python
def get_shuffle_indices(randao_reveal: BLSSignature) -> Sequence[uint64]: def get_shuffle_indices(randao_reveal: BLSSignature) -> Sequence[uint64]:
""" """
Given a `randao_reveal` return the list of indices that got shuffled from the entire candidate set Given a `randao_reveal` return the list of indices that got shuffled from the entire candidate set.
""" """
indices = [] indices = []
for i in range(0, WHISK_VALIDATORS_PER_SHUFFLE): for i in range(0, WHISK_VALIDATORS_PER_SHUFFLE):