Skip to content

Commit 21c6011

Browse files
committed
remove extra comments
1 parent d37728d commit 21c6011

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/extension/common/python.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,14 @@ import {
1717
import { useEnvExtension } from './utilities';
1818
import { EnvironmentVariables } from './variables/types';
1919

20-
/**
21-
* Details about a Python interpreter.
22-
*/
2320
export interface IInterpreterDetails {
24-
/** Array of path components to the Python executable */
2521
path?: string[];
26-
/** The workspace resource associated with this interpreter */
2722
resource?: Uri;
2823
}
2924

3025
/** Event emitter for Python interpreter changes */
3126
const onDidChangePythonInterpreterEvent = new EventEmitter<IInterpreterDetails>();
3227

33-
/** Event that fires when the active Python interpreter changes */
3428
export const onDidChangePythonInterpreter: Event<IInterpreterDetails> = onDidChangePythonInterpreterEvent.event;
3529

3630
async function activateExtensions() {

0 commit comments

Comments
 (0)