Fix return type in Tolk backend.

This commit is contained in:
Nolan Darilek 2022-03-31 13:38:39 -05:00
parent da19d5f16c
commit 4d01717e75
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ impl Backend for Tolk {
unimplemented!()
}
fn voice(&self) -> Result<Voice, Error> {
fn voice(&self) -> Result<Option<Voice>, Error> {
unimplemented!()
}