Revert the design choice of making the PythonCaller a static singleton

This commit is contained in:
2022-06-01 15:44:41 +02:00
committed by Derek Christ
parent e00ee59631
commit b3277b2e52
8 changed files with 47 additions and 55 deletions

View File

@@ -45,12 +45,6 @@
#include <QDebug>
#include <QApplication>
PythonCaller &PythonCaller::instance()
{
static PythonCaller instance;
return instance;
}
PythonCaller::PythonCaller() :
metricModuleName("metrics"),
metricFunctionName("calculateMetrics"),