diff --git a/main/src/domain/reaper_source.rs b/main/src/domain/reaper_source.rs index 2086b1cc9..7cc806324 100644 --- a/main/src/domain/reaper_source.rs +++ b/main/src/domain/reaper_source.rs @@ -10,7 +10,6 @@ use std::collections::HashSet; use std::convert::TryInto; use std::error::Error; use std::fmt::{Display, Formatter}; -use std::sync::Mutex; use std::time::{Duration, Instant}; #[derive(Clone, Eq, PartialEq, Debug)] @@ -59,11 +58,11 @@ pub fn say(feedback_value: SpeechSourceFeedbackValue) -> Result<(), Box, tts::Error>> = Lazy::new(|| get_default_tts().map(Mutex::new)); let tts = TTS.as_ref()?; @@ -76,7 +75,7 @@ pub fn say(feedback_value: SpeechSourceFeedbackValue) -> Result<(), Box