Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaponzanelli committed Sep 3, 2023
1 parent b902884 commit 851418f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multiServiceAccessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export class MultiServiceAccessory {
return capabilitiesToCover;
}

const allCapabilities = capabilities.concat(optionalCapabilities.filter(e => capabilitiesToCover.includes(e)))
const allCapabilities = capabilities.concat(optionalCapabilities.filter(e => capabilitiesToCover.includes(e)));

this.log.debug(`Creating instance of ${serviceConstructor.name} for capabilities ${allCapabilities}`);
const serviceInstance = new serviceConstructor(this.platform, this.accessory, componentId, allCapabilities, this, this.name, component);
Expand Down

0 comments on commit 851418f

Please sign in to comment.