Skip to content

Commit

Permalink
Fix code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Format Bot authored and gsteinLTU committed Jul 30, 2024
1 parent 46e3461 commit 69ee491
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/procedures/iotscape/iotscape-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
8 changes: 7 additions & 1 deletion src/procedures/iotscape/iotscape.js
Original file line number Diff line number Diff line change
Expand Up @@ -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),
);
};

/**
Expand Down

0 comments on commit 69ee491

Please sign in to comment.