Skip to content

Commit 1fc220f

Browse files
Update github/data_source_github_organization_app_installations.go
Co-authored-by: Steve Hipwell <[email protected]>
1 parent 0728783 commit 1fc220f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

github/data_source_github_organization_app_installations.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ func dataSourceGithubOrganizationAppInstallations() *schema.Resource {
100100
}
101101
}
102102

103-
func dataSourceGithubOrganizationAppInstallationsRead(ctx context.Context, d *schema.ResourceData, meta any) diag.Diagnostics {
104-
owner := meta.(*Owner).name
105-
106-
client := meta.(*Owner).v3client
103+
func dataSourceGithubOrganizationAppInstallationsRead(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics {
104+
meta := m.(*Owner)
105+
owner := meta.name
106+
client := meta.v3client
107107

108108
options := &github.ListOptions{
109109
PerPage: maxPerPage,

0 commit comments

Comments
 (0)