Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed Mar 7, 2024
1 parent e0669fc commit a25483b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/core/src/adapter/luma.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ export class luma {
}

/** Convert a list of devices to a map */
function getDeviceMap(deviceClasses?: any[] /* : typeof Device */): Map<string, typeof Device> | null {
function getDeviceMap(
deviceClasses?: any[] /* : typeof Device */
): Map<string, typeof Device> | null {
if (!deviceClasses || deviceClasses?.length === 0) {
return null;
}
Expand Down

0 comments on commit a25483b

Please sign in to comment.