From 20115864783bef20e269411947062704813afe1f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Sun, 14 Apr 2024 19:29:30 +0200 Subject: [PATCH] fmt --- satrs/src/tmtc/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/satrs/src/tmtc/mod.rs b/satrs/src/tmtc/mod.rs index 997b459..a691317 100644 --- a/satrs/src/tmtc/mod.rs +++ b/satrs/src/tmtc/mod.rs @@ -7,13 +7,13 @@ //! all received telecommands are sent to a special handler object called TC source. Using //! a design like this makes it simpler to add new TC packet sources or new telemetry generators: //! They only need to send the received and generated data to these objects. +#[cfg(feature = "std")] +use crate::queue::GenericSendError; #[cfg(feature = "alloc")] use downcast_rs::{impl_downcast, Downcast}; use spacepackets::SpHeader; #[cfg(feature = "std")] use std::sync::mpsc; -#[cfg(feature = "std")] -use crate::queue::GenericSendError; #[cfg(feature = "std")] pub mod tc_helper;