From ea2a63d515cb7d0f99fcc12c29aaf6455c4b7f1b Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 21 Feb 2026 08:30:28 -0500 Subject: [PATCH] missing : --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 7353d1ad..e18b0a96 100644 --- a/transmit.py +++ b/transmit.py @@ -38,7 +38,7 @@ def setup(pin, config): if config == "in" or config == "out" or config == "up" or config == "down": command = "gpio -g mode " + str(powerPin) + " " + config system(command) - else + else: print(f"Unknown GPIO setup configuration: {config}") def blink(times):