Add fieldprops argument to SummaryConfig constructor

This commit is contained in:
Joakim Hove
2021-03-08 08:10:40 +01:00
parent 091c7b21cd
commit 48b366b1f9
17 changed files with 37 additions and 27 deletions

View File

@@ -18,7 +18,7 @@ void python::common::export_EclipseConfig(py::module& module)
py::class_< SummaryConfig >( module, "SummaryConfig")
.def(py::init([](const Deck& deck, const EclipseState& state, const Schedule& schedule) {
return SummaryConfig( deck, schedule, state.getTableManager(), state.aquifer() );
return SummaryConfig( deck, schedule, state.fieldProps(), state.getTableManager(), state.aquifer() );
} ) )
.def( "__contains__", &SummaryConfig::hasKeyword );