Remove erroneous space

This commit is contained in:
Skylar Grant 2024-08-18 13:46:51 -04:00
parent 7afc662ba7
commit fee1e0e88e
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ module.exports = {
}, },
// Calls the GPIO Interface script to set a pin's state regardless of its current state // Calls the GPIO Interface script to set a pin's state regardless of its current state
setPin(pin, state, callback) { 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) { if (error) {
return callback(error); return callback(error);
} }