Skip to content

Commit fed3049

Browse files
committed
fix: format code to pass Prettier checks
1 parent 97d029e commit fed3049

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/core.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,12 @@ export class Core {
101101
this.messageAbortControllers.get(messageId)?.abort();
102102
}
103103

104-
105104
/**
106105
* Wraps async task execution with automatic AbortController cleanup.
107106
*/
108107
private runWithAbortController<T extends Promise<any> | AsyncGenerator<any>>(
109108
id: string,
110-
task: (controller: AbortController) => T
109+
task: (controller: AbortController) => T,
111110
): T {
112111
const controller = this.addMessageAbortController(id);
113112
const cleanup = () => this.abortById(id);

0 commit comments

Comments
 (0)