Python source class refactor (#2524)

Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
Patrick Shriwise 2023-06-20 21:27:55 -05:00 committed by GitHub
parent ee7b95245a
commit eda39ad9ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
146 changed files with 648 additions and 4310 deletions

View file

@ -458,7 +458,7 @@ void read_settings_xml(pugi::xml_node root)
// Create custom source
model::external_sources.push_back(
make_unique<CustomSourceWrapper>(path, parameters));
make_unique<CompiledSourceWrapper>(path, parameters));
} else {
model::external_sources.push_back(make_unique<IndependentSource>(node));
}