From 88f50867011543118421813ffcfae2fd4840c6d8 Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Fri, 30 Dec 2022 14:38:23 -0500 Subject: [PATCH] Change initial state --- garage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garage.py b/garage.py index ed56df9..dbb2893 100644 --- a/garage.py +++ b/garage.py @@ -11,7 +11,7 @@ from threading import Lock threadLock = Lock() stateFile = 'www/garage.json' -state = {'east-door': 'opened', 'west-door': 'opened'} +state = {'east-door': 'init', 'west-door': 'init'} config = ConfigParser() config.read('garage.cfg')