Skip to content

Commit

Permalink
Allow clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DerFetzer committed Dec 17, 2024
1 parent fe98230 commit b56eab1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/camera.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ impl CameraThread {
pub fn run(&mut self) -> ! {
let (exit_tx, exit_rx) = flume::bounded(0);
let config: Arc<Mutex<Option<ImageConfig>>> = Arc::new(Mutex::new(None));
#[allow(clippy::type_complexity)]
let controls: Arc<Mutex<Option<Vec<(KnownCameraControl, ControlValueSetter)>>>> =
Arc::new(Mutex::new(None));
let mut join_handle = None;
Expand Down

0 comments on commit b56eab1

Please sign in to comment.