Skip to content

Commit

Permalink
Merge pull request #38 from jepler/remove-bad-whitespace-directive
Browse files Browse the repository at this point in the history
remove bad-whitespace pylint directive
  • Loading branch information
dhalbert authored Aug 23, 2020
2 parents 1d6dec3 + 56877f7 commit 62ddaaf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions adafruit_pn532/adafruit_pn532.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_PN532.git"

# pylint: disable=bad-whitespace
_PREAMBLE = const(0x00)
_STARTCODE1 = const(0x00)
_STARTCODE2 = const(0xFF)
Expand Down Expand Up @@ -163,7 +162,6 @@

_ACK = b"\x00\x00\xFF\x00\xFF\x00"
_FRAME_START = b"\x00\x00\xFF"
# pylint: enable=bad-whitespace


def _reset(pin):
Expand Down
1 change: 0 additions & 1 deletion adafruit_pn532/i2c.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
from micropython import const
from adafruit_pn532.adafruit_pn532 import PN532, BusyError, _reset

# pylint: disable=bad-whitespace
_I2C_ADDRESS = const(0x24)


Expand Down
1 change: 0 additions & 1 deletion adafruit_pn532/spi.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
from micropython import const
from adafruit_pn532.adafruit_pn532 import PN532

# pylint: disable=bad-whitespace
_SPI_STATREAD = const(0x02)
_SPI_DATAWRITE = const(0x01)
_SPI_DATAREAD = const(0x03)
Expand Down

0 comments on commit 62ddaaf

Please sign in to comment.