From a77133b5c2ea74b6025c7c7eb4554f4d1c8e42b7 Mon Sep 17 00:00:00 2001 From: dashrb <65059254+dashrb@users.noreply.github.com> Date: Fri, 1 Jul 2022 15:21:09 -0400 Subject: [PATCH] Fix typo in README regarding disarm syntax --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index f52b8606..3934b4e7 100644 --- a/README.rst +++ b/README.rst @@ -148,7 +148,7 @@ Methods exist to arm/disarm the sync module, as well as enable/disable motion de blink.sync["SYNC MODULE NAME"].arm = True # Disarm a sync module - blink.sync["SYNC MODULE NAME"].disarm = False + blink.sync["SYNC MODULE NAME"].arm = False # Print arm status of a sync module - a system refresh should be performed first blink.refresh()