Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
aisrael committed Mar 17, 2024
1 parent ec27439 commit 97602a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ghctl/repo/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ pub async fn apply(
access_token: &str,
owner: &str,
repo: &str,
config_files: &Vec<String>,
config_files: &[String],
) -> Result<()> {
debug!("Applying configuration to {owner}/{repo}");

Expand Down Expand Up @@ -502,7 +502,7 @@ where
{
if let Some(map1) = map1 {
if let Some(map2) = map2 {
Some(map1.into_iter().chain(map2.into_iter()).collect())
Some(map1.into_iter().chain(map2).collect())
} else {
Some(map1)
}
Expand Down

0 comments on commit 97602a9

Please sign in to comment.