1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-12-01 21:13:24 +03:00

style(lint): fix formatting (#702)

Signed-off-by: Bukowa <gitbukowa@gmail.com>
This commit is contained in:
Buk Bukowski 2024-06-15 15:40:24 +02:00 committed by GitHub
parent eac2195963
commit b7e323f8ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -382,14 +382,16 @@ impl<'a> Changelog<'a> {
serde_json::to_value(self.config.remote.clone())?,
);
#[cfg(feature = "github")]
let (github_commits, github_pull_requests) = if self.config.remote.github.is_set() {
let (github_commits, github_pull_requests) = if self.config.remote.github.is_set()
{
self.get_github_metadata()
.expect("Could not get github metadata")
} else {
(vec![], vec![])
};
#[cfg(feature = "gitlab")]
let (gitlab_commits, gitlab_merge_request) = if self.config.remote.gitlab.is_set() {
let (gitlab_commits, gitlab_merge_request) = if self.config.remote.gitlab.is_set()
{
self.get_gitlab_metadata()
.expect("Could not get gitlab metadata")
} else {