Change IExecutablesList.titleExists to contains to match UIBase name. (#157)

This commit is contained in:
Mikaël Capelle
2026-05-08 12:54:40 +02:00
committed by GitHub
parent 1720aeedf8
commit 0b0f34b2da
+1 -1
View File
@@ -223,7 +223,7 @@ namespace mo2::python {
})
.def("getByTitle", &IExecutablesList::getByTitle, "title"_a)
.def("getByBinary", &IExecutablesList::getByBinary, "info"_a)
.def("titleExists", &IExecutablesList::contains, "title"_a);
.def("contains", &IExecutablesList::contains, "title"_a);
}
void add_modinterface_classes(py::module_ m)