Skip to content

Commit

Permalink
transform.go: put day_of_year function after day_of_week in order…
Browse files Browse the repository at this point in the history
… to have proper sort order at transformFuncs
  • Loading branch information
valyala committed Nov 28, 2023
1 parent 34e5eb4 commit a271ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transform.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ var transformFuncs = map[string]bool{
"clamp_min": true,
"cos": true,
"cosh": true,
"day_of_year": true,
"day_of_month": true,
"day_of_week": true,
"day_of_year": true,
"days_in_month": true,
"deg": true,
"drop_common_labels": true,
Expand Down

0 comments on commit a271ee2

Please sign in to comment.