fix linting errs

This commit is contained in:
2025-09-24 00:07:00 +02:00
parent 26bca77a03
commit 8d61b1d010
3 changed files with 15 additions and 15 deletions

View File

@@ -65,9 +65,7 @@ func (tp *TimestampProccessor) Parse(timestamp string) (time.Time, error) {
}
// now failed, try module dateparse
ts, err = dateparse.ParseAny(timestamp)
return ts, nil
return dateparse.ParseAny(timestamp)
}
func (tp *TimestampProccessor) Calc(timestampA, timestampB string) error {