Skip to content

Commit

Permalink
add a default for FileName in TfGraphDefProducer::fillDescriptions()
Browse files Browse the repository at this point in the history
  • Loading branch information
mmusich committed Aug 7, 2023
1 parent 689c030 commit 0b093e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PhysicsTools/TensorFlow/plugins/TfGraphDefProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ TfGraphDefProducer::ReturnType TfGraphDefProducer::produce(const TfGraphRecord&
void TfGraphDefProducer::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.add<std::string>("ComponentName", "tfGraphDef");
desc.add<edm::FileInPath>("FileName");
desc.add<edm::FileInPath>("FileName", edm::FileInPath());
descriptions.add("tfGraphDefProducer", desc);
}

Expand Down

0 comments on commit 0b093e5

Please sign in to comment.