Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jan 17, 2025
1 parent ab5881d commit e8faa50
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ee/tabby-webserver/src/service/repository/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ impl RepositoryService for RepositoryServiceImpl {
self.config
.iter()
.enumerate()
.map(|(index, repo)|CodeRepository::new(repo.git_url(), &config_index_to_id(index)))
.collect::<Vec<CodeRepository>>()
.map(|(index, repo)| {
CodeRepository::new(repo.git_url(), &config_index_to_id(index))
})
.collect::<Vec<CodeRepository>>(),
);

Ok(repos)
Expand Down

0 comments on commit e8faa50

Please sign in to comment.