From 1d26ae973f0852e51a3c2c2cb97a89825b136924 Mon Sep 17 00:00:00 2001 From: Jason Bruce Date: Mon, 19 Apr 2021 08:05:40 -0400 Subject: [PATCH] removed MAX31956Error import because it does not exist --- lib/oven.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oven.py b/lib/oven.py index ec5679d..17ea994 100644 --- a/lib/oven.py +++ b/lib/oven.py @@ -104,7 +104,7 @@ class TempSensorReal(TempSensor): if config.max31856: log.info("init MAX31856") - from max31856 import MAX31856, MAX31856Error + from max31856 import MAX31856 software_spi = { 'cs': config.gpio_sensor_cs, 'clk': config.gpio_sensor_clock, 'do': config.gpio_sensor_data }