Skip to content

Commit

Permalink
style: change concat of strings
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrMatsko committed Nov 13, 2024
1 parent a184a2c commit 34caa71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cli/teams_names.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func transformTeamsByNameMap(teamsByNameMap map[string][]teamWithID) map[string]

_, exists := teamByUniqueName[lowercasedTeamName]
if exists {
team.Name = team.Name + "_" + iStr
team.Name += "_" + iStr
} else {
teamByUniqueName[lowercasedTeamName] = team
break
Expand Down

0 comments on commit 34caa71

Please sign in to comment.