private void checkPythonInterpreterRunning()

in src/main/java/pemja/core/PythonInterpreter.java [176:181]


    private void checkPythonInterpreterRunning() {
        if (tState == 0) {
            throw new RuntimeException(
                    "The python interpreter has not been started. You need to call the `open` method before.");
        }
    }