Skip to content

Commit cad4c63

Browse files
committed
cargo fmt
1 parent 38bfc84 commit cad4c63

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

asyncgit/src/sync/branch/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::{
1111
sync::{
1212
remotes::get_default_remote_for_push_in_repo,
1313
repository::repo, utils::get_head_repo, CommitId,
14-
CommitSignature,
14+
CommitSignature,
1515
},
1616
};
1717
use chrono::{DateTime, Local, TimeZone};

src/popups/branch_sort.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
use anyhow::Result;
22
use crossterm::event::Event;
33
use ratatui::{
4-
layout::{Alignment, Margin, Rect}, style::Stylize, text::{Line, Span}, widgets::{Block, Borders, Clear, Paragraph}, Frame
4+
layout::{Alignment, Margin, Rect},
5+
style::Stylize,
6+
text::{Line, Span},
7+
widgets::{Block, Borders, Clear, Paragraph},
8+
Frame,
59
};
610
use strum::{EnumCount, IntoEnumIterator};
711

@@ -127,7 +131,8 @@ impl DrawableComponent for BranchSortPopup {
127131
.borders(Borders::NONE)
128132
.border_style(self.theme.block(true)),
129133
)
130-
.alignment(Alignment::Left).not_bold(),
134+
.alignment(Alignment::Left)
135+
.not_bold(),
131136
area,
132137
);
133138
}

0 commit comments

Comments
 (0)