Skip to content

Commit

Permalink
chore(gamelift-fleet): fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Sep 27, 2024
1 parent 14db660 commit 0ab4b39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/gamelift-fleet.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ func (l *GameLiftFleetLister) List(_ context.Context, o interface{}) ([]resource
return nil, err
}

for _, fleetId := range resp.FleetIds {
for _, fleetID := range resp.FleetIds {
fleet := &GameLiftFleet{
svc: svc,
FleetID: fleetId,
FleetID: fleetID,
}
resources = append(resources, fleet)
}
Expand Down

0 comments on commit 0ab4b39

Please sign in to comment.