@@ -47,15 +47,15 @@ def get_installed_tools(path=None)-> str:
4747 tool_lines .append (("Python" ,f"http://www.python.org/" , version , "Python programming language with standard library" ))
4848 if (node_exe := python_exe .parent .parent / "n" / "node.exe" ).exists ():
4949 version = exec_shell_cmd (f'powershell (Get-Item { node_exe } ).VersionInfo.FileVersion' , node_exe .parent ).splitlines ()[0 ]
50- tool_lines .append ("Nodejs" , "https://nodejs.org" , version , "a JavaScript runtime built on Chrome's V8 JavaScript engine" )
50+ tool_lines .append (( "Nodejs" , "https://nodejs.org" , version , "a JavaScript runtime built on Chrome's V8 JavaScript engine" ) )
5151
5252 if (pandoc_exe := python_exe .parent .parent / "t" / "pandoc.exe" ).exists ():
5353 version = exec_shell_cmd ("pandoc -v" , pandoc_exe .parent ).splitlines ()[0 ].split (" " )[- 1 ]
54- tool_lines .append ("Pandoc" , "https://pandoc.org" , version , "an universal document converter" )
54+ tool_lines .append (( "Pandoc" , "https://pandoc.org" , version , "an universal document converter" ) )
5555
5656 if (vscode_exe := python_exe .parent .parent / "t" / "VSCode" / "Code.exe" ).exists ():
5757 version = exec_shell_cmd (f'powershell (Get-Item { vscode_exe } ).VersionInfo.FileVersion' , vscode_exe .parent ).splitlines ()[0 ]
58- tool_lines .append ("VSCode" ,"https://code.visualstudio.com" , version , "a source-code editor developed by Microsoft" )
58+ tool_lines .append (( "VSCode" ,"https://code.visualstudio.com" , version , "a source-code editor developed by Microsoft" ) )
5959 return tool_lines
6060
6161def onerror (function , path , excinfo ):
0 commit comments