We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7890dea commit bee4106Copy full SHA for bee4106
1 file changed
dfetch/commands/environment.py
@@ -24,5 +24,5 @@ def create_menu(subparsers: dfetch.commands.command.SubparserActionType) -> None
24
def __call__(self, _: argparse.Namespace) -> None:
25
"""Perform listing the environment."""
26
logger.print_info_line("platform", f"{platform.system()} {platform.release()}")
27
- for vcs in SUPPORTED_PROJECT_TYPES:
28
- vcs.list_tool_info()
+ for project_type in SUPPORTED_PROJECT_TYPES:
+ project_type.list_tool_info()
0 commit comments