Skip to content

Commit eb07462

Browse files
committed
Fix set
1 parent ae7bcdf commit eb07462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/manage/install_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def print_cli_shortcuts(cmd):
347347
from .installs import get_install_alias_names
348348
installs = cmd.get_installs()
349349
tags = getattr(cmd, "tags", None)
350-
seen = set("python.exe".casefold())
350+
seen = {"python.exe".casefold()}
351351
verbose = LOGGER.would_log_to_console(VERBOSE)
352352
for i in installs:
353353
# We need to pre-filter aliases before getting the nice names.

0 commit comments

Comments
 (0)