Skip to content

Commit

Permalink
remove needless lifetimes
Browse files Browse the repository at this point in the history
Co-authored-by: Ryo Yamashita <[email protected]>
  • Loading branch information
Yosshi999 and qryxip authored Oct 21, 2024
1 parent a5a08e8 commit abdc696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/voicevox_core_python_api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -680,12 +680,12 @@ mod blocking {
style_id,
enable_interrogative_upspeak = TtsOptions::default().enable_interrogative_upspeak
))]
fn precompute_render<'py>(
fn precompute_render(
&self,
#[pyo3(from_py_with = "crate::convert::from_dataclass")] audio_query: AudioQuery,
style_id: u32,
enable_interrogative_upspeak: bool,
py: Python<'py>,
py: Python<'_>,
) -> PyResult<AudioFeature> {
let audio = self
.synthesizer
Expand Down

0 comments on commit abdc696

Please sign in to comment.