exclude BackendFrontendService

---------

Co-authored-by: Abdo <abdo@abdnh.net>
This commit is contained in:
Luc Mcgrady 2025-10-29 16:03:43 +00:00
parent 633caa5c1d
commit f46dbaa9f4
No known key found for this signature in database
GPG key ID: 4F3D7A0B17CC3D9C

View file

@ -22,7 +22,7 @@ pub(crate) fn write_python_interface(services: &[BackendService]) -> Result<()>
write_header(&mut out)?;
for service in services {
if service.name == "BackendAnkidroidService" {
if ["BackendAnkidroidService", "BackendFrontendService"].contains(&service.name.as_str()) {
continue;
}
for method in service.all_methods() {