Skip to content

Commit

Permalink
Fix golangci-lint 'unparam'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Sep 9, 2024
1 parent 78aaaeb commit 8260e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/sagemaker/user_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ func statusUserProfile(ctx context.Context, conn *sagemaker.Client, domainID, us
}
}

func waitUserProfileInService(ctx context.Context, conn *sagemaker.Client, domainID, userProfileName string) (*sagemaker.DescribeUserProfileOutput, error) {
func waitUserProfileInService(ctx context.Context, conn *sagemaker.Client, domainID, userProfileName string) (*sagemaker.DescribeUserProfileOutput, error) { //nolint:unparam
const (
timeout = 10 * time.Minute
)
Expand Down

0 comments on commit 8260e9b

Please sign in to comment.