lint fixes

This commit is contained in:
Kevaundray Wedderburn 2024-04-23 13:38:14 +01:00
parent 6aa950e1dd
commit e7e49ec71a
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ def g1_lincomb(points: Sequence[KZGCommitment], scalars: Sequence[BLSFieldElemen
points_g1 = []
for point in points:
points_g1.append(bls.bytes48_to_G1(point))
result = bls.g1_multi_exp(points_g1,scalars)
result = bls.g1_multi_exp(points_g1, scalars)
return KZGCommitment(bls.G1_to_bytes48(result))
```