From 5c61ad490f08d4580e465940ce3e635416013b22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Wysoki=C5=84ski?= Date: Sun, 27 Aug 2023 08:20:56 +0200 Subject: [PATCH] style: remove unnecessary new lines --- internal/data_source_user.go | 1 - internal/resource_user.go | 1 - 2 files changed, 2 deletions(-) diff --git a/internal/data_source_user.go b/internal/data_source_user.go index bee7861..cc59b46 100644 --- a/internal/data_source_user.go +++ b/internal/data_source_user.go @@ -27,7 +27,6 @@ func (d *userDataSource) Metadata(_ context.Context, req datasource.MetadataRequ func (d *userDataSource) Schema(_ context.Context, _ datasource.SchemaRequest, resp *datasource.SchemaResponse) { resp.Schema = schema.Schema{ MarkdownDescription: "Use this data source to retrieve information about a user.", - Attributes: map[string]schema.Attribute{ "id": schema.Int64Attribute{ Computed: true, diff --git a/internal/resource_user.go b/internal/resource_user.go index 356f02b..0e21e30 100644 --- a/internal/resource_user.go +++ b/internal/resource_user.go @@ -34,7 +34,6 @@ func (r *userResource) Schema(_ context.Context, _ resource.SchemaRequest, resp This resource allows you to add/remove users. When applied, a new user will be created. When destroyed, that user will be removed.`, - Attributes: map[string]schema.Attribute{ "id": schema.Int64Attribute{ Computed: true,