From 69ee491766b9edc32309de428d3fadc2ed55b14d Mon Sep 17 00:00:00 2001 From: Format Bot Date: Tue, 16 Jan 2024 23:15:55 +0000 Subject: [PATCH] Fix code formatting --- src/procedures/iotscape/iotscape-services.js | 8 +++++++- src/procedures/iotscape/iotscape.js | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/procedures/iotscape/iotscape-services.js b/src/procedures/iotscape/iotscape-services.js index 95c82f37..4102fe8f 100644 --- a/src/procedures/iotscape/iotscape-services.js +++ b/src/procedures/iotscape/iotscape-services.js @@ -422,7 +422,13 @@ IoTScapeServices._specialMessageTypes = { ); // Tell device what the new key is, so it can display it - IoTScapeServices.call(parsed.service, "_requestedKey", parsed.id, null, ...key); + IoTScapeServices.call( + parsed.service, + "_requestedKey", + parsed.id, + null, + ...key, + ); }, "_link": (parsed) => { const targetService = parsed.event.args.service; diff --git a/src/procedures/iotscape/iotscape.js b/src/procedures/iotscape/iotscape.js index ca69e558..5960991a 100644 --- a/src/procedures/iotscape/iotscape.js +++ b/src/procedures/iotscape/iotscape.js @@ -158,7 +158,13 @@ IoTScape._send = function (service, id, command, caller) { return false; } - return IoTScapeServices.call(service, parts[0], id, clientId, ...parts.slice(1)); + return IoTScapeServices.call( + service, + parts[0], + id, + clientId, + ...parts.slice(1), + ); }; /**