Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cjgajard committed Jun 13, 2024
1 parent e663d20 commit 029efc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pagerdutyplugin/data_source_pagerduty_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ func (d *dataSourceService) Read(ctx context.Context, req datasource.ReadRequest
var found *pagerduty.Service
err := apiutil.All(ctx, func(offset int) (bool, error) {
resp, err := d.client.ListServicesWithContext(ctx, pagerduty.ListServiceOptions{
Query: searchName.ValueString(),
Limit: apiutil.Limit,
Offset: uint(offset),
Query: searchName.ValueString(),
Limit: apiutil.Limit,
Offset: uint(offset),
Includes: []string{"teams"},
})
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions pagerdutyplugin/resource_pagerduty_addon.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ func (r *resourceAddon) Schema(_ context.Context, _ resource.SchemaRequest, resp
resp.Schema = schema.Schema{
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Computed: true,
PlanModifiers: []planmodifier.String{ stringplanmodifier.UseStateForUnknown(), },
Computed: true,
PlanModifiers: []planmodifier.String{stringplanmodifier.UseStateForUnknown()},
},
"name": schema.StringAttribute{Required: true},
"src": schema.StringAttribute{Required: true},
Expand Down

0 comments on commit 029efc6

Please sign in to comment.