We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8efa2b0 commit bc17684Copy full SHA for bc17684
tmc-langs-python3/src/main/java/fi/helsinki/cs/tmc/langs/python3/Python3Plugin.java
@@ -143,7 +143,8 @@ private String[] getTestCommand() {
143
command = new String[] {"py", "-3"};
144
// Conda only works with the "python"-command on windows
145
String condaPython = System.getenv("CONDA_PYTHON_EXE");
146
- if (condaPython != null && !condaPython.isEmpty() && Files.exists(Paths.get(condaPython))) {
+ if (condaPython != null && !condaPython.isEmpty()
147
+ && Files.exists(Paths.get(condaPython))) {
148
command = new String[] {condaPython};
149
}
150
} else {
0 commit comments