Trailing commas not allowed in functions with starargs before Python 3.6

pull/219/head
David Núñez 2018-09-20 11:29:42 +02:00
parent 98c7a7d779
commit 17c8c6004d
1 changed files with 1 additions and 2 deletions

View File

@ -105,8 +105,7 @@ def kdf(ecpoint: Point,
def hash_to_curvebn(*crypto_items,
params: UmbralParameters,
use_blake2b=True,
) -> CurveBN:
use_blake2b=True) -> CurveBN:
hash_function = Blake2b() if use_blake2b else ExtendedKeccak()
for item in crypto_items: