Skip to content

Commit 54f2821

Browse files
committed
Rename pipPackageManager.ts
1 parent 2a2f0d1 commit 54f2821

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/managers/builtin/main.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { createSimpleDebounce } from '../../common/utils/debounce';
44
import { createFileSystemWatcher, onDidDeleteFiles } from '../../common/workspace.apis';
55
import { getPythonApi } from '../../features/pythonApi';
66
import { NativePythonFinder } from '../common/nativePythonFinder';
7-
import { PipPackageManager } from './pipManager';
7+
import { PipPackageManager } from './pipPackageManager';
88
import { SysPythonManager } from './sysPythonManager';
99
import { VenvManager } from './venvManager';
1010

@@ -60,10 +60,10 @@ export async function registerSystemPythonFeatures(
6060
);
6161
});
6262
const packageWatcher = createFileSystemWatcher(
63-
'**/site-packages/*.dist-info/METADATA',
63+
'**/site-packages/*.dist-info/METADATA',
6464
false, // don't ignore create events (pip install)
65-
true, // ignore change events (content changes in METADATA don't affect package list)
66-
false // don't ignore delete events (pip uninstall)
65+
true, // ignore change events (content changes in METADATA don't affect package list)
66+
false, // don't ignore delete events (pip uninstall)
6767
);
6868
disposables.push(
6969
packageDebouncedRefresh,

0 commit comments

Comments
 (0)