From 23a0f72c2fc8564db0b56bb9e3937bfb283253f2 Mon Sep 17 00:00:00 2001 From: Cooper Quintin Date: Tue, 24 Jun 2025 12:42:59 -0700 Subject: [PATCH] cargo fmt --- lib/src/analysis/information_element.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/src/analysis/information_element.rs b/lib/src/analysis/information_element.rs index 1b60efe..f885c8d 100644 --- a/lib/src/analysis/information_element.rs +++ b/lib/src/analysis/information_element.rs @@ -4,8 +4,8 @@ //! standard. use crate::gsmtap::{GsmtapMessage, GsmtapType, LteNasSubtype, LteRrcSubtype}; -use telcom_parser::{decode, lte_rrc}; use pycrate_rs::nas::NASMessage; +use telcom_parser::{decode, lte_rrc}; use thiserror::Error; #[derive(Error, Debug)] @@ -93,7 +93,9 @@ impl TryFrom<&GsmtapMessage> for InformationElement { } GsmtapType::LteNas(LteNasSubtype::Plain) => { let msg = NASMessage::parse(&gsmtap_msg.payload)?; - Ok(InformationElement::LTE(Box::new(LteInformationElement::NAS(msg)))) + Ok(InformationElement::LTE(Box::new( + LteInformationElement::NAS(msg), + ))) } _ => Err(InformationElementError::UnsupportedGsmtapType( gsmtap_msg.header.gsmtap_type,