You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In lists2safebrowsing.py the size of sha256 hashes is hardcoded to 32 bytes in several places, when we could be using hash.digest_size to get it. The result would obviously be the same, but it would be a small improvement in terms of readability.
The text was updated successfully, but these errors were encountered:
In
lists2safebrowsing.py
the size of sha256 hashes is hardcoded to 32 bytes in several places, when we could be usinghash.digest_size
to get it. The result would obviously be the same, but it would be a small improvement in terms of readability.The text was updated successfully, but these errors were encountered: