fix returns type

This commit is contained in:
tuna2134
2024-09-22 07:40:46 +00:00
parent 64cbd151a6
commit 96a5ab0672

View File

@@ -141,4 +141,8 @@ impl TTSModel {
)?;
Ok(PyBytes::new_bound(py, &data))
}
fn unload(&mut self, ident: String) -> bool {
self.model.unload(ident)
}
}