From 7f4520f7787d2ba53fbaefa48f8c0c9f2ef80daf Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@unibas.ch> Date: Thu, 25 Jun 2020 21:32:11 +0200 Subject: [PATCH] give missing argument a default value to make example code run through... --- modules/mol/alg/pymod/export_molck.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/mol/alg/pymod/export_molck.cc b/modules/mol/alg/pymod/export_molck.cc index 5578bd050..9671434ba 100644 --- a/modules/mol/alg/pymod/export_molck.cc +++ b/modules/mol/alg/pymod/export_molck.cc @@ -120,7 +120,8 @@ void export_Molck() .def_readwrite("assign_elem", &MolckSettings::assign_elem); def("MapNonStandardResidues", &MapNonStandardResidues, (arg("ent"), - arg("lib"))); + arg("lib"), + arg("log_diags")=false)); def("RemoveAtoms", &RemoveAtoms, (arg("ent"), arg("lib"), -- GitLab