Skip to content

Commit 62ddaaf

Browse files
authored
Merge pull request #38 from jepler/remove-bad-whitespace-directive
remove bad-whitespace pylint directive
2 parents 1d6dec3 + 56877f7 commit 62ddaaf

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

adafruit_pn532/adafruit_pn532.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
__version__ = "0.0.0-auto.0"
5555
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_PN532.git"
5656

57-
# pylint: disable=bad-whitespace
5857
_PREAMBLE = const(0x00)
5958
_STARTCODE1 = const(0x00)
6059
_STARTCODE2 = const(0xFF)
@@ -163,7 +162,6 @@
163162

164163
_ACK = b"\x00\x00\xFF\x00\xFF\x00"
165164
_FRAME_START = b"\x00\x00\xFF"
166-
# pylint: enable=bad-whitespace
167165

168166

169167
def _reset(pin):

adafruit_pn532/i2c.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
from micropython import const
4444
from adafruit_pn532.adafruit_pn532 import PN532, BusyError, _reset
4545

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

4948

adafruit_pn532/spi.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
from micropython import const
4343
from adafruit_pn532.adafruit_pn532 import PN532
4444

45-
# pylint: disable=bad-whitespace
4645
_SPI_STATREAD = const(0x02)
4746
_SPI_DATAWRITE = const(0x01)
4847
_SPI_DATAREAD = const(0x03)

0 commit comments

Comments
 (0)