Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanahuckova committed Feb 28, 2025
1 parent 73399ab commit e27b406
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions data/time_series_errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ package data
import "errors"

var (
ErrorNullTimeValues = errors.New("unable to process the data to wide series because input has null time values, make sure all time values are not null")
ErrorSeriesUnsorted = errors.New("unable to process the data because it is not sorted in ascending order by time, please updated your query to sort the data by time if possible")
ErrorNullTimeValues = errors.New("unable to process the data to wide series because input has null time values, make sure all time values are not null")
ErrorSeriesUnsorted = errors.New("unable to process the data because it is not sorted in ascending order by time, please updated your query to sort the data by time if possible")
ErrorInputFieldsWithoutRows = errors.New("can not convert to long series, input fields have no rows")
ErrorInputFieldsWithoutRowsWideSeries = errors.New("can not convert to wide series, input fields have no rows")
ErrorInputFieldsWithoutRows = errors.New("can not convert to long series, input fields have no rows")

)

0 comments on commit e27b406

Please sign in to comment.