Skip to content

Commit 3436bde

Browse files
committed
updates for formatting etc
1 parent 84b253b commit 3436bde

File tree

4 files changed

+0
-7
lines changed

4 files changed

+0
-7
lines changed

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@
160160
"category": "Python",
161161
"icon": "$(check)"
162162
},
163-
164163
{
165164
"command": "python-envs.remove",
166165
"title": "%python-envs.remove.title%",
@@ -271,7 +270,6 @@
271270
"command": "python-envs.setEnv",
272271
"when": "false"
273272
},
274-
275273
{
276274
"command": "python-envs.remove",
277275
"when": "false"
@@ -393,7 +391,6 @@
393391
"group": "inline",
394392
"when": "view == python-projects && viewItem =~ /.*python-workspace.*/"
395393
},
396-
397394
{
398395
"command": "python-envs.createTerminal",
399396
"group": "inline",

package.nls.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"python-envs.createAny.title": "Create Environment",
2323
"python-envs.set.title": "Set Project Environment",
2424
"python-envs.setEnv.title": "Set As Project Environment",
25-
2625
"python-envs.remove.title": "Delete Environment",
2726
"python-envs.refreshAllManagers.title": "Refresh All Environment Managers",
2827
"python-envs.refreshPackages.title": "Refresh Packages List",

src/extension.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,6 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
186186
commands.registerCommand('python-envs.setEnv', async (item) => {
187187
await setEnvironmentCommand(item, envManagers, projectManager);
188188
}),
189-
190189
commands.registerCommand('python-envs.setEnvManager', async () => {
191190
await setEnvManagerCommand(envManagers, projectManager);
192191
}),

src/features/envCommands.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,6 @@ async function setEnvironmentForProjects(
329329
await em.setEnvironments(uris, environment);
330330
}
331331

332-
333-
334332
export async function setEnvManagerCommand(em: EnvironmentManagers, wm: PythonProjectManager): Promise<void> {
335333
const projects = await pickProjectMany(wm.getProjects());
336334
if (projects && projects.length > 0) {

0 commit comments

Comments
 (0)