mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 20:57:13 -05:00
exclude BackendFrontendService
--------- Co-authored-by: Abdo <abdo@abdnh.net>
This commit is contained in:
parent
633caa5c1d
commit
f46dbaa9f4
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ pub(crate) fn write_python_interface(services: &[BackendService]) -> Result<()>
|
||||||
write_header(&mut out)?;
|
write_header(&mut out)?;
|
||||||
|
|
||||||
for service in services {
|
for service in services {
|
||||||
if service.name == "BackendAnkidroidService" {
|
if ["BackendAnkidroidService", "BackendFrontendService"].contains(&service.name.as_str()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
for method in service.all_methods() {
|
for method in service.all_methods() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue