fix remaining clippy lints

This commit is contained in:
Ferdinand Schober
2023-12-18 21:38:12 +01:00
parent 4600db7af8
commit 66de3e3cbc
4 changed files with 10 additions and 6 deletions

View File

@@ -1,3 +1,4 @@
use anyhow::{anyhow, Result};
use crate::client::{ClientEvent, ClientHandle};
use crate::event::Event;
use crate::producer::EventProducer;
@@ -8,8 +9,8 @@ use std::{io, pin::Pin};
pub struct MacOSProducer;
impl MacOSProducer {
pub fn new() -> Self {
Self {}
pub fn new() -> Result<Self> {
Err(anyhow!("not yet implemented"))
}
}