Skip to content

Commit

Permalink
fix linters
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelsz-rb committed Oct 19, 2023
1 parent 291d559 commit 3452d8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rollbar/data_source_projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ func dataSourceProjectsRead(ctx context.Context, d *schema.ResourceData, m inter
}

func flattenProjects(projects []client.Project) []client.FlattenedProject {
var fps []client.FlattenedProject
var fps = make([]client.FlattenedProject, 0)

for _, p := range projects {
fp := client.FlattenedProject{
ID: p.ID,
Expand Down

0 comments on commit 3452d8b

Please sign in to comment.