Code style

This commit is contained in:
Andreas Tsouchlos 2025-10-04 02:10:46 +02:00
parent f92bbf5d7d
commit 72930892c6

View File

@ -2,7 +2,7 @@
#![no_main]
use embassy_time::Timer;
use nrf_softdevice::{raw, Softdevice};
use nrf_softdevice::Softdevice;
use defmt::*;
use embassy_executor::Spawner;
@ -65,7 +65,7 @@ impl Driver for MockI2cDriver {
}
impl MockI2cDriver {
fn new(_: u8) -> Self {
fn new() -> Self {
Self {}
}
}