Skip to content

Commit 577e96d

Browse files
committed
Fix linting
1 parent f647038 commit 577e96d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

virtual-things-adapter.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1323,11 +1323,11 @@ class VirtualThingsDevice extends Device {
13231323

13241324
action.start();
13251325

1326-
if (this.id.startsWith('virtual-things-custom-')){
1326+
if (this.id.startsWith('virtual-things-custom-')) {
13271327
if (this.events.has(action.name)) {
13281328
this.eventNotify(new Event(this,
1329-
action.name,
1330-
action.input));
1329+
action.name,
1330+
action.input));
13311331
}
13321332
action.finish();
13331333
return Promise.resolve();
@@ -1642,7 +1642,7 @@ class VirtualThingsAdapter extends Adapter {
16421642

16431643
newDescr.properties.push(prop);
16441644
}
1645-
1645+
16461646
for (const action of actions) {
16471647
const act = {
16481648
name: action.name,

0 commit comments

Comments
 (0)