From fee1e0e88e81f07cc4d29f8280744b2dbbac35b3 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Sun, 18 Aug 2024 13:46:51 -0400 Subject: [PATCH] Remove erroneous space --- src/custom_modules/VoidGPIO.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/custom_modules/VoidGPIO.js b/src/custom_modules/VoidGPIO.js index 5e132d8..44deb2c 100644 --- a/src/custom_modules/VoidGPIO.js +++ b/src/custom_modules/VoidGPIO.js @@ -64,7 +64,7 @@ module.exports = { }, // Calls the GPIO Interface script to set a pin's state regardless of its current state setPin(pin, state, callback) { - exec(`python 3 src/python/gpio_interface.py set ${pin} ${state}`, (error, stdout, stderr) => { + exec(`python3 src/python/gpio_interface.py set ${pin} ${state}`, (error, stdout, stderr) => { if (error) { return callback(error); }