pylint disable pointless-statement in __init__()

This commit is contained in:
FoamyGuy 2020-02-29 12:41:37 -06:00
parent 0c287cd375
commit 0e7d9b938d

View file

@ -185,7 +185,7 @@ class BusyError(Exception):
class PN532:
"""PN532 driver base, must be extended for I2C/SPI/UART interfacing"""
# noinspection PyStatementEffect
# pylint: disable=pointless-statement
def __init__(self, *, debug=False, reset=None):
"""Create an instance of the PN532 class
"""