* lol if you do this it works ```rust use embassy_nrf::interrupt; #[interrupt] unsafe fn TIMER0() { info!("timer lol"); } ``` but then you import something else, it gets autoformatted like this, and fails ```rust use embassy_nrf::interrupt::{self, TIMER0}; #[interrupt] // cannot find attribute `interrupt` in this scope unsafe fn TIMER0() { info!("timer lol"); } ```