Skip to content

Commit 3b47d19

Browse files
committed
corrected pylint invalid name errors
1 parent b97615c commit 3b47d19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_max31856.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def temperature_thresholds(self, val: Tuple[float, float]) -> None:
288288
self._write_u8(_MAX31856_LTLFTL_REG, int_low)
289289

290290
@property
291-
def reference_temperature_thresholds(
291+
def reference_temperature_thresholds( # pylint: disable=invalid-name,
292292
self,
293293
) -> Tuple[float, float]: # pylint: disable=invalid-name
294294
"""The cold junction's low and high temperature thresholds
@@ -300,7 +300,7 @@ def reference_temperature_thresholds(
300300
)
301301

302302
@reference_temperature_thresholds.setter
303-
def reference_temperature_thresholds(
303+
def reference_temperature_thresholds( # pylint: disable=invalid-name,
304304
self, val: Tuple[float, float]
305305
) -> None: # pylint: disable=invalid-name
306306

0 commit comments

Comments
 (0)