Python: No installations message [STUD-77361]#549
Conversation
Show -No Python installations were detected- when no installations are found
|
@adrianignat13 has been assigned to this PR. |
|
@sorinconstantin has been assigned to this PR. |
sorinconstantin
left a comment
There was a problem hiding this comment.
High: Activities/Python/UiPath.Python.Activities.ViewModels/ViewModels/PythonScopeViewModel.cs:94 has the
condition reversed. if (GetInstalledPythonVersions().Any()) enters the “No Python installations were detected” path
when installations do exist, making the dropdown read-only and hiding valid choices. The check should be ! GetInstalledPythonVersions().Any() or use a local installedVersions list and branch on Count == 0.
That is correct.. I initially let this condition as it is for testing purposes (since I had python installations on the machine) |
Fix if condition
|



Show -No Python installations were detected- when no installations are found
https://uipath.atlassian.net/browse/STUD-77361