Add new line at the end of the file

This commit is contained in:
Lee moon soo 2016-11-21 22:05:37 -08:00
parent 41c09d9e47
commit 22507e6216
3 changed files with 4 additions and 4 deletions

View file

@ -158,7 +158,7 @@ public class PythonDockerInterpreter extends Interpreter {
return exit == 0;
}
protected int runCommand(InterpreterOutput out, String ... command)
protected int runCommand(InterpreterOutput out, String... command)
throws IOException, InterruptedException {
ProcessBuilder builder = new ProcessBuilder(command);
builder.redirectErrorStream(true);
@ -172,4 +172,4 @@ public class PythonDockerInterpreter extends Interpreter {
int r = process.waitFor(); // Let the process finish.
return r;
}
}
}

View file

@ -24,4 +24,4 @@ limitations under the License.
Example
<pre># Run python interpreter with latest tensorflow image
%python.docker activate gcr.io/tensorflow/tensorflow:latest</pre>
</div>
</div>

View file

@ -93,4 +93,4 @@ public class PythonDockerInterpreterTest implements InterpreterOutputListener {
public void onUpdate(InterpreterOutput out, byte[] output) {
}
}
}