resolve some new lint issues detected by newer version, and a few looked over ones

This commit is contained in:
protolambda 2019-06-01 02:40:29 +02:00
parent b79f01e2fa
commit fae1e9285d
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
5 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,5 @@
from hashlib import sha256
def hash(x): return sha256(x).digest()
def hash(x):
return sha256(x).digest()