Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nima-rx committed Sep 19, 2022
1 parent 5ad4836 commit 5ae0b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/namespace_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ func appendRepos(repo_list []string, found_repos []string) []string {
check[repo] = true
}

for repo, _ := range check {
for repo := range check {
res = append(res, repo)
}

Expand Down

0 comments on commit 5ae0b99

Please sign in to comment.