Skip to content

Commit 8448885

Browse files
author
Stephan Dilly
committed
clippy fixes
1 parent 8032c35 commit 8448885

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ impl App {
694694
}
695695
}
696696
Action::ForcePush(branch, force) => {
697-
self.queue.push(InternalEvent::Push(branch, force))
697+
self.queue.push(InternalEvent::Push(branch, force));
698698
}
699699
Action::PullMerge { rebase, .. } => {
700700
self.pull_popup.try_conflict_free_merge(rebase);

src/tabs/status.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ impl Status {
347347
AsyncGitNotification::Push
348348
| AsyncGitNotification::Fetch
349349
| AsyncGitNotification::CommitFiles => {
350-
self.branch_compare()
350+
self.branch_compare();
351351
}
352352
_ => (),
353353
}

0 commit comments

Comments
 (0)