Skip to content

Commit bee4106

Browse files
committed
don't use vcs name
1 parent 7890dea commit bee4106

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dfetch/commands/environment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ def create_menu(subparsers: dfetch.commands.command.SubparserActionType) -> None
2424
def __call__(self, _: argparse.Namespace) -> None:
2525
"""Perform listing the environment."""
2626
logger.print_info_line("platform", f"{platform.system()} {platform.release()}")
27-
for vcs in SUPPORTED_PROJECT_TYPES:
28-
vcs.list_tool_info()
27+
for project_type in SUPPORTED_PROJECT_TYPES:
28+
project_type.list_tool_info()

0 commit comments

Comments
 (0)