1
0
mirror of https://github.com/ndarilek/tts-rs.git synced 2024-11-17 11:09:37 +00:00

Remove unnecessary return statement.

This commit is contained in:
Nolan Darilek 2022-11-22 11:13:05 -06:00
parent f5716c48f5
commit e19e5ef0b7

View File

@ -248,7 +248,7 @@ impl Backend for Web {
return Ok(());
}
}
return Err(Error::OperationFailed);
Err(Error::OperationFailed)
} else {
Err(Error::NoneError)
}