Compare commits

..

1 commit

Author SHA1 Message Date
917990f67d remove bad-whitespace pylint directive 2020-08-23 11:01:51 -05:00
2 changed files with 1 additions and 3 deletions

View file

@ -6,7 +6,7 @@ Introduction
:alt: Documentation Status
.. image :: https://img.shields.io/discord/327254708534116352.svg
:target: https://adafru.it/discord
:target: https://discord.gg/nBQh6qu
:alt: Discord
.. image:: https://github.com/adafruit/Adafruit_CircuitPython_AMG88xx/workflows/Build%20CI/badge.svg

View file

@ -52,7 +52,6 @@ from micropython import const
# Registers are defined below in the class. These are possible register values.
# Operating Modes
# pylint: disable=bad-whitespace
_NORMAL_MODE = const(0x00)
_SLEEP_MODE = const(0x10)
_STAND_BY_60 = const(0x20)
@ -81,7 +80,6 @@ _PIXEL_ARRAY_WIDTH = const(8)
_PIXEL_ARRAY_HEIGHT = const(8)
_PIXEL_TEMP_CONVERSION = 0.25
_THERMISTOR_CONVERSION = 0.0625
# pylint: enable=bad-whitespace
def _signed_12bit_to_float(val):