Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
asanso committed Mar 1, 2024
1 parent d092b46 commit 8cfbdce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def case01_add_G1():
result_doubling_P1 = add(P1, P1)
assert result_doubling_P1 == multiply(P1, 2)

yield f'add_G1_bls', [
yield 'add_G1_bls', [
{
"Input": int_to_hex(int(G1[0]), 64) + (int_to_hex(int(G1[1]), 64)) + int_to_hex(int(P1[0]), 64) + (int_to_hex(int(P1[1]), 64)),
"Name": "bls_g1add_g1+p1",
Expand Down Expand Up @@ -208,7 +208,7 @@ def case02_add_G2():
# Doubling
result_doubling_G2 = add(G2, G2)
assert result_doubling_G2 == multiply(G2, 2)
yield f'add_G2_bls', [
yield 'add_G2_bls', [
{
}
]
Expand Down

0 comments on commit 8cfbdce

Please sign in to comment.