How to use `pylint` on code supporting multiple Python versions?

297 Views Asked by At

Since hashlib.file_digest was introduced only in Python 3.11, I use a fallback to the previous code:

if sys.version_info < (3, 11):
    digest = hashlib.sha256()
    digest.update(file.read())
else:
    digest = hashlib.file_digest(file, hashlib.sha256)

Running pylint on Python 3.10 on this file, I get the following error:

Module 'hashlib' has no 'file_digest' member (no-member)

I can add # pylint: disable=no-member to the bottom branch of the code, but then I will get

Useless suppression of 'no-member' (useless-suppression)

when pylint is run in Python 3.11.

0

There are 0 best solutions below