Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Aug 11, 2021
1 parent dd1a24e commit d6a0713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/debugger/jupyter/debuggingManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class DebuggingManager implements IExtensionSingleActivationService, IDeb
if (!cell) {
const range = editor?.selections[0];
if (range) {
cell = editor.document.cellAt(range.start);
cell = editor?.document.cellAt(range.start);
}
}

Expand Down

0 comments on commit d6a0713

Please sign in to comment.