Skip to content

Commit bc17684

Browse files
committed
Fix checkstyle
1 parent 8efa2b0 commit bc17684

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tmc-langs-python3/src/main/java/fi/helsinki/cs/tmc/langs/python3/Python3Plugin.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ private String[] getTestCommand() {
143143
command = new String[] {"py", "-3"};
144144
// Conda only works with the "python"-command on windows
145145
String condaPython = System.getenv("CONDA_PYTHON_EXE");
146-
if (condaPython != null && !condaPython.isEmpty() && Files.exists(Paths.get(condaPython))) {
146+
if (condaPython != null && !condaPython.isEmpty()
147+
&& Files.exists(Paths.get(condaPython))) {
147148
command = new String[] {condaPython};
148149
}
149150
} else {

0 commit comments

Comments
 (0)