From e3a151c7fa511976f61746d5fedc76a8cbddf055 Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Thu, 12 May 2022 18:46:33 -0400 Subject: [PATCH] fix module import order --- buttond.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buttond.py b/buttond.py index aff20c7..0941fc7 100755 --- a/buttond.py +++ b/buttond.py @@ -15,9 +15,9 @@ __email__ = "kevin@company235.com" __status__ = "Prototype" import configparser -from bacon.script import comment -from gpiozero import Button, GPIODeviceError from signal import pause +from baconscript.bacon.script import comment +from gpiozero import Button, GPIODeviceError # use mock pins when not working on Pi hardware # from gpiozero.pins.mock import MockFactory