Merge pull request #2326 from joakim-hove/summary-add-fp
Add fieldprops argument to SummaryConfig constructor
This commit is contained in:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user