fix: remove print for select_model method of sim module

This commit is contained in:
appel_c 2024-07-27 15:07:48 +02:00
parent f8e9aaf55a
commit 5009316a82

View File

@ -161,7 +161,6 @@ class SimulatedDataBase(ABC):
self._model = model_cls() if callable(model_cls) else model_cls
self._params = self.get_params_for_model_cls()
self._params.update(self._get_additional_params())
print(self._get_table_active_simulation())
@property
def params(self) -> dict: