Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
David Kutugata committed Aug 8, 2021
1 parent c0244d7 commit 7f2ffde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ export class DebuggerVariableRegistration implements IExtensionSingleActivationS
) {}
public activate(): Promise<void> {
this.disposables.push(this.debugService.registerDebugAdapterTrackerFactory(PYTHON_LANGUAGE, this));
this.disposables.push(this.debugService.registerDebugAdapterTrackerFactory(DataScience.pythonKernelDebugAdapter(), this));
this.disposables.push(
this.debugService.registerDebugAdapterTrackerFactory(DataScience.pythonKernelDebugAdapter(), this)
);
return Promise.resolve();
}

Expand Down
2 changes: 1 addition & 1 deletion src/client/datascience/jupyter/jupyterVariables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class JupyterVariables implements IJupyterVariables {
if (this.ipykernelDebuggerVariables.active && (!notebook || notebook.status === ServerStatus.Busy)) {
return this.ipykernelDebuggerVariables;
}

if (this.debuggerVariables.active && (!notebook || notebook.status === ServerStatus.Busy)) {
return this.debuggerVariables;
}
Expand Down
2 changes: 1 addition & 1 deletion src/client/debugger/jupyter/ipykernelDebuggerVariables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -415,4 +415,4 @@ export function convertDebugProtocolVariableToIJupyterVariable(variable: DebugPr
truncated: true,
frameId: variable.variablesReference
};
}
}

0 comments on commit 7f2ffde

Please sign in to comment.