private PythonInterpreterConfig()

in src/main/java/pemja/core/PythonInterpreterConfig.java [55:61]


    private PythonInterpreterConfig(
            String pythonHome, String[] paths, String pythonExec, ExecType execType) {
        this.pythonHome = pythonHome;
        this.paths = paths;
        this.pythonExec = pythonExec;
        this.execType = execType;
    }