Skip to content

Commit

Permalink
fix: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Oct 24, 2024
1 parent 33177d5 commit dcb282b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/zwave-js/src/lib/driver/Driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,9 @@ export class Driver extends TypedEventEmitter<DriverEventCallbacks>
}
private set queueIdle(value: boolean) {
if (this._queueIdle !== value) {
this.driverLog.print(`${value ? "all queues idle" : "one or more queues busy"}`);
this.driverLog.print(
value ? "all queues idle" : "one or more queues busy",
);
this._queueIdle = value;
this.handleQueueIdleChange(value);
}
Expand Down

0 comments on commit dcb282b

Please sign in to comment.