From ff16dd51712f5e2dc2b0dce4dedd956bd15185fb Mon Sep 17 00:00:00 2001 From: Vitor de Miranda Henrique Date: Fri, 3 Mar 2017 00:52:39 -0600 Subject: [PATCH] bux fix --- octoprint_enclosure/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/octoprint_enclosure/__init__.py b/octoprint_enclosure/__init__.py index 2eabb76..0f297f7 100644 --- a/octoprint_enclosure/__init__.py +++ b/octoprint_enclosure/__init__.py @@ -242,11 +242,11 @@ class EnclosurePlugin(octoprint.plugin.StartupPlugin, if self.io1.autoShutDown and self.io1.enable: scheduler.enter(self.toFloat(self.io1.timeDelay), 1, self.io1.write, (False,)) - if self.io2.autoShutDown and self.io2.enable:: + if self.io2.autoShutDown and self.io2.enable: scheduler.enter(self.toFloat(self.io2.timeDelay), 1, self.io2.write, (False,)) - if self.io3.autoShutDown and self.io3.enable:: + if self.io3.autoShutDown and self.io3.enable: scheduler.enter(self.toFloat(self.io3.timeDelay), 1, self.io3.write, (False,)) - if self.io4.autoShutDown and self.io4.enable:: + if self.io4.autoShutDown and self.io4.enable: scheduler.enter(self.toFloat(self.io4.timeDelay), 1, self.io4.write, (False,)) scheduler.run()