Rename variables to stop shadowing package name
This commit is contained in:
		@@ -390,12 +390,12 @@ func (c *githubConnector) userGroups(ctx context.Context, client *http.Client) (
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	groups := make([]string, 0)
 | 
			
		||||
	for _, org := range orgs {
 | 
			
		||||
		if teams, ok := orgTeams[org]; !ok {
 | 
			
		||||
			groups = append(groups, org)
 | 
			
		||||
	for _, o := range orgs {
 | 
			
		||||
		if teams, ok := orgTeams[o]; !ok {
 | 
			
		||||
			groups = append(groups, o)
 | 
			
		||||
		} else {
 | 
			
		||||
			for _, team := range teams {
 | 
			
		||||
				groups = append(groups, formatTeamName(org, team))
 | 
			
		||||
			for _, t := range teams {
 | 
			
		||||
				groups = append(groups, formatTeamName(o, t))
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user