Correctly disable erroneous pylint error

This commit is contained in:
Gene Hoffman 2020-06-30 12:09:20 -07:00 committed by Gene Hoffman
parent 074fed031f
commit 2c3197ba46

View File

@ -1,5 +1,5 @@
from secrets import token_bytes
from src.types.proof_of_space import ProofOfSpace # pylint: E0401
from src.types.proof_of_space import ProofOfSpace # pylint: disable=E0401
class TestProofOfSpace: