Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
arahlin committed Mar 1, 2024
1 parent 98edc00 commit 170fdbc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/src/G3PipelineInfo.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,7 @@ G3ModuleConfig_set(G3ModuleConfigPtr mc, std::string key, bp::object obj)
}

std::string repr = bp::extract<std::string>(obj.attr("__repr__")());
auto arg = G3ModulePythonArgPtr(new G3ModulePythonArg(repr));
mc->config[key] = arg;
mc->config[key] = boost::make_shared<G3ModulePythonArg>(repr);
}

static bp::list
Expand Down

0 comments on commit 170fdbc

Please sign in to comment.