chore: fix new clippy lints (#4136)

This commit is contained in:
David Knaack
2022-06-30 22:18:29 +02:00
committed by GitHub
parent 7594f01d3d
commit eb67534ac9
4 changed files with 4 additions and 5 deletions
+2 -2
View File
@@ -573,7 +573,7 @@ fn get_remote_repository_info(repository: &Repository) -> Option<Remote> {
None
}
#[derive(Debug, Clone, Copy, PartialEq)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Shell {
Bash,
Fish,
@@ -589,7 +589,7 @@ pub enum Shell {
}
/// Which kind of prompt target to print (main prompt, rprompt, ...)
#[derive(Debug, Clone, Copy, PartialEq)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Target {
Main,
Right,