style: split import groups correctly

This commit is contained in:
EdJoPaTo
2024-05-01 18:32:53 +02:00
parent be05a341f4
commit 202e8d874c
2 changed files with 4 additions and 5 deletions
+4 -4
View File
@@ -13,14 +13,14 @@ use ratatui::style::Style;
use ratatui::widgets::{Block, Scrollbar, ScrollbarState, StatefulWidget, Widget};
use unicode_width::UnicodeWidthStr;
mod flatten;
mod tree_item;
mod tree_state;
pub use crate::flatten::Flattened;
pub use crate::tree_item::TreeItem;
pub use crate::tree_state::TreeState;
mod flatten;
mod tree_item;
mod tree_state;
/// A `Tree` which can be rendered.
///
/// The generic argument `Identifier` is used to keep the state like the currently selected or opened [`TreeItem`]s in the [`TreeState`].