Skip to content

Commit

Permalink
removing an extra conversion (as per comment #1890 (comment))
Browse files Browse the repository at this point in the history
  • Loading branch information
gf-mse committed Sep 20, 2019
1 parent 98e8340 commit a026e63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_readme.py
Expand Up @@ -55,7 +55,7 @@ def load_signed():

signed_set.add((m.group(1).strip(), m.group(2).strip()))

signed_list = sorted(list( signed_set ), key=lambda pair: hashlib.sha256(repr(pair).encode('utf-8')).hexdigest())
signed_list = sorted(signed_set, key=lambda pair: hashlib.sha256(repr(pair).encode('utf-8')).hexdigest())
return signed_list


Expand Down

0 comments on commit a026e63

Please sign in to comment.