Skip to content

Commit 89fa2b8

Browse files
committed
2 parents b6ffcda + 7748d99 commit 89fa2b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

octoprint_tplinksmartplug/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ def processAtCommand(self, comm_instance, phase, command, parameters, tags=None,
11411141

11421142
def check_temps(self, parsed_temps):
11431143
thermal_runaway_triggered = False
1144-
for k, v in parsed_temps.items():
1144+
for k, v in list(parsed_temps.items()):
11451145
if k == "B" and v[0] > int(self._settings.get(["thermal_runaway_max_bed"])):
11461146
self._tplinksmartplug_logger.debug("Max bed temp reached, shutting off plugs.")
11471147
thermal_runaway_triggered = True

0 commit comments

Comments
 (0)