Skip to content

Commit 4fb416f

Browse files
cxyangsclaude
authored andcommitted
style: fix formatting issues
- Prettier: format AudioSource constructor call in _output.ts - ESLint: use type-only import for Throws in proc_pool.test.ts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9349ebf commit 4fb416f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

agents/src/ipc/proc_pool.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2026 LiveKit, Inc.
22
//
33
// SPDX-License-Identifier: Apache-2.0
4-
import { Throws } from '@livekit/throws-transformer/throws';
4+
import type { Throws } from '@livekit/throws-transformer/throws';
55
import { describe, expect, it, vi } from 'vitest';
66
import type { RunningJobInfo } from '../job.js';
77
import { type JobExecutor, JobStatus } from './job_executor.js';

agents/src/voice/room_io/_output.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,11 @@ export class ParticipantAudioOutput extends AudioOutput {
333333
super(options.sampleRate, undefined, { pause: true });
334334
this.room = room;
335335
this.options = options;
336-
this.audioSource = new AudioSource(options.sampleRate, options.numChannels, options.queueSizeMs);
336+
this.audioSource = new AudioSource(
337+
options.sampleRate,
338+
options.numChannels,
339+
options.queueSizeMs,
340+
);
337341
}
338342

339343
get subscribed(): boolean {

0 commit comments

Comments
 (0)