Skip to content

Commit

Permalink
refactor(organization_user): fixed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
vmyroslav committed Dec 9, 2024
1 parent 64d0f82 commit 1c492ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func datasourceOrganizationUserRead(ctx context.Context, d *schema.ResourceData,

rm, err := client.OrganizationUserList(ctx, organizationID)
if err != nil {
return fmt.Errorf("cannot get organization [%s] user list: %s", organizationID, err)
return fmt.Errorf("cannot get organization [%s] user list: %w", organizationID, err)
}

// Find the organization user by email or ID
Expand Down

0 comments on commit 1c492ad

Please sign in to comment.