Skip to content

Commit 4b6f31f

Browse files
committed
lint error fixes
1 parent 73ce888 commit 4b6f31f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ export class Messenger {
950950
)
951951
)
952952
}
953-
953+
954954
public sendDirectiveMessage(tabID: string, triggerID: string, message: string) {
955955
this.dispatcher.sendChatMessage(
956956
new ChatMessage(
@@ -970,8 +970,8 @@ export class Messenger {
970970
)
971971
)
972972
}
973-
974-
/**
973+
974+
/**
975975
* Check if a trigger has been cancelled and should not proceed
976976
* @param triggerId The trigger ID to check
977977
* @returns true if the trigger is cancelled and should not proceed

packages/core/src/codewhispererChat/tools/executeBash.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ export class ExecuteBash {
266266
collect: false,
267267
waitForStreams: true,
268268
onStdout: async (chunk: string) => {
269-
if (cancellationToken?.isCancellationRequested) {
269+
if (cancellationToken?.isCancellationRequested) {
270270
this.logger.debug('Bash command execution cancelled during stderr processing')
271271
return
272272
}
@@ -281,7 +281,7 @@ export class ExecuteBash {
281281
processQueue()
282282
},
283283
onStderr: async (chunk: string) => {
284-
if (cancellationToken?.isCancellationRequested) {
284+
if (cancellationToken?.isCancellationRequested) {
285285
this.logger.debug('Bash command execution cancelled during stderr processing')
286286
return
287287
}

0 commit comments

Comments
 (0)