fix: linting
All checks were successful
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 1m25s

This commit is contained in:
2026-01-07 08:54:33 +01:00
parent b13712b0df
commit f1e0c1c1c2

View File

@@ -107,9 +107,5 @@ func (s ServiceImpl) GetAll(ctx context.Context, user *auth_types.User) ([]Tag,
func (s ServiceImpl) isTagValid(tag Tag) bool {
err := core.ValidateString(tag.Name, "name")
if err != nil {
return false
}
return true
return err == nil
}