Skip to content

Commit ba4fca2

Browse files
Kelsi HoyleKelsi Hoyle
authored andcommitted
remove files edited by fmt
1 parent c57186d commit ba4fca2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/projects/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,23 @@ func main() {
2828

2929
// Create a new project
3030
p, err := client.Projects.Create(ctx, "org-test", tfe.ProjectCreateOptions{
31-
Name: "my-app-tst",
31+
Name: "my-app-tst",
3232
})
3333
if err != nil {
3434
log.Fatal(err)
3535
}
3636

3737
// Update the project auto destroy activity duration
3838
p, err = client.Projects.Update(ctx, p.ID, tfe.ProjectUpdateOptions{
39-
AutoDestroyActivityDuration: jsonapi.NewNullableAttrWithValue("3d"),
39+
AutoDestroyActivityDuration: jsonapi.NewNullableAttrWithValue("3d"),
4040
})
4141
if err != nil {
4242
log.Fatal(err)
4343
}
4444

4545
// Disable auto destroy
4646
p, err = client.Projects.Update(ctx, p.ID, tfe.ProjectUpdateOptions{
47-
AutoDestroyActivityDuration: jsonapi.NewNullNullableAttr[string](),
47+
AutoDestroyActivityDuration: jsonapi.NewNullNullableAttr[string](),
4848
})
4949
if err != nil {
5050
log.Fatal(err)

0 commit comments

Comments
 (0)