From b7ac0a84c2dbd3557e87642e22e776105958e85a Mon Sep 17 00:00:00 2001 From: eleanorjboyd <26030610+eleanorjboyd@users.noreply.github.com> Date: Fri, 27 Jun 2025 14:49:27 -0700 Subject: [PATCH] remove pep 723 reference from create new flow --- src/features/creators/newScriptProject.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/creators/newScriptProject.ts b/src/features/creators/newScriptProject.ts index cc978120..cc9c440b 100644 --- a/src/features/creators/newScriptProject.ts +++ b/src/features/creators/newScriptProject.ts @@ -11,7 +11,7 @@ import { isCopilotInstalled, manageCopilotInstructionsFile, replaceInFilesAndNam export class NewScriptProject implements PythonProjectCreator { public readonly name = l10n.t('newScript'); public readonly displayName = l10n.t('Script'); - public readonly description = l10n.t('Creates a new script folder in your current workspace with PEP 723 support'); + public readonly description = l10n.t('Creates a new script folder in your current workspace'); public readonly tooltip = new MarkdownString(l10n.t('Create a new Python script')); constructor(private readonly projectManager: PythonProjectManager) {}