Skip to content

remove bad-whitespace pylint directive #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 26, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions adafruit_bluefruitspi.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
from adafruit_bus_device.spi_device import SPIDevice
from micropython import const

# pylint: disable=bad-whitespace
_MSG_COMMAND = const(0x10) # Command message
_MSG_RESPONSE = const(0x20) # Response message
_MSG_ALERT = const(0x40) # Alert message
Expand Down Expand Up @@ -84,8 +83,6 @@
_PACKET_BUTTON_LEN = const(5)
_PACKET_COLOR_LEN = const(6)

# pylint: enable=bad-whitespace


class BluefruitSPI:
"""Helper for the Bluefruit LE SPI Friend"""
Expand Down