Skip to content

Commit

Permalink
chore: remove assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
mint-dewit committed Jul 3, 2024
1 parent 079b50e commit 2ae7942
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ export class SisyfosApi extends EventEmitter {
const args: Array<MetaArgument> = [
{
type: 'i',
value: command.values.pgmOn as number,
value: command.values.pgmOn,
},
]
if (command.values.fadeTime) {
args.push({
type: 'f',
value: command.values.fadeTime as number,
value: command.values.fadeTime,
})
}
this._oscClient.send({
Expand Down

0 comments on commit 2ae7942

Please sign in to comment.