Skip to content

Commit

Permalink
Lint 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sangkenlee committed Mar 19, 2024
1 parent 2bcfa50 commit 572b4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/model/policy-template.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (pt *PolicyTemplate) AfterFind(tx *gorm.DB) (err error) {
pt.Libs = strings.Split(supportedVersion.ParameterSchema, FILE_DELIMETER)

// 마찬가지로 에러 무시
json.Unmarshal([]byte(supportedVersion.ParameterSchema), &pt.ParametersSchema)
_ = json.Unmarshal([]byte(supportedVersion.ParameterSchema), &pt.ParametersSchema)
}

pt.PermittedOrganizationIds = make([]string, len(pt.PermittedOrganizations))
Expand Down

0 comments on commit 572b4bb

Please sign in to comment.