Skip to content

Commit 4c42aa8

Browse files
committed
remove unused code
1 parent 5f92aad commit 4c42aa8

2 files changed

Lines changed: 0 additions & 14 deletions

File tree

src/managers/pipenv/pipenvManager.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
PythonEnvironment,
1313
PythonEnvironmentApi,
1414
PythonProject,
15-
QuickCreateConfig,
1615
RefreshEnvironmentsScope,
1716
ResolveEnvironmentContext,
1817
SetEnvironmentScope,
@@ -116,11 +115,6 @@ export class PipenvManager implements EnvironmentManager {
116115
);
117116
}
118117

119-
quickCreateConfig?(): QuickCreateConfig | undefined {
120-
// To be implemented
121-
return undefined;
122-
}
123-
124118
async create?(
125119
_scope: CreateEnvironmentScope,
126120
_options?: CreateEnvironmentOptions,
@@ -129,10 +123,6 @@ export class PipenvManager implements EnvironmentManager {
129123
return undefined;
130124
}
131125

132-
async remove?(_environment: PythonEnvironment): Promise<void> {
133-
// To be implemented
134-
}
135-
136126
async refresh(scope: RefreshEnvironmentsScope): Promise<void> {
137127
const hardRefresh = scope === undefined; // hard refresh when scope is undefined
138128

src/managers/pipenv/pipenvUtils.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,3 @@ export async function setPipenvForWorkspaces(fsPath: string[], envPath: string |
240240
});
241241
await state.set(PIPENV_WORKSPACE_KEY, data);
242242
}
243-
244-
export class PipenvUtils {
245-
// Add static helper methods for pipenv operations here
246-
}

0 commit comments

Comments
 (0)