style: apply rustfmt

This commit is contained in:
daimond113 2024-11-12 18:00:24 +01:00
parent 9f93cb93d6
commit d68a1389ab
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C

View file

@ -75,13 +75,13 @@ fn compare_repo_urls(this: &gix::Url, external: &gix::Url) -> bool {
} else {
&this
};
let external = if external.ends_with(".git") {
&external[..external.len() - 4]
} else {
&external
};
this == external
}