style: remove confusing underscore

This commit is contained in:
Guillaume Ballet 2023-03-10 09:34:44 +01:00
parent a5c955fb63
commit 509fbb2c5c
1 changed files with 2 additions and 2 deletions

View File

@ -138,8 +138,8 @@ StateDiff = List[StemStateDiff, MAX_STEMS]
```python
class IpaProof(Container):
c_l: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
c_r: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
cl: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
cr: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
final_evaluation = BanderwagonFieldElement
```