satisfy linter

This commit is contained in:
2026-07-07 06:37:21 +02:00
parent 2d8ecae73b
commit 86f17329b0

View File

@@ -45,9 +45,7 @@ func any2string(in any) string {
return val.Format("2006-01-02 15:04:05") return val.Format("2006-01-02 15:04:05")
case []byte: case []byte:
return string(val) return string(val)
case types.Percentage: case types.DateTime, types.Percentage:
return val.(string)
case types.DateTime:
return val.(string) return val.(string)
case nil: case nil:
return "null" return "null"