don't
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(knot): clippy

Signed-off-by: tjh <x@tjh.dev>

tjh 8c055d15 9f304183

+1 -1
+1 -1
crates/knot/src/model/knot_state.rs
··· 104 104 .map(|socket| { 105 105 let bound = TcpListener::bind(socket)?; 106 106 bound.set_nonblocking(true)?; 107 - Ok(tokio::net::TcpListener::from_std(bound)?) 107 + tokio::net::TcpListener::from_std(bound) 108 108 }) 109 109 .collect::<Result<Vec<_>, io::Error>>()?; 110 110