Skip to content

Commit

Permalink
Change to the correct Python function call
Browse files Browse the repository at this point in the history
  • Loading branch information
tnederlof committed Feb 16, 2023
1 parent 5ab3901 commit af934ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/languages/python.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func PromptAndInstallPython(osType string) ([]string, error) {
if err != nil {
return []string{}, fmt.Errorf("issue retrieving Python versions: %w", err)
}
installPythonVersions, err := RSelectVersionsPrompt(validPythonVersions)
installPythonVersions, err := PythonSelectVersionsPrompt(validPythonVersions)
if err != nil {
return []string{}, fmt.Errorf("issue selecting Python versions: %w", err)
}
Expand Down

0 comments on commit af934ba

Please sign in to comment.