Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed May 7, 2024
1 parent 2ef77f5 commit 537cf65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/postgres/qvalue_convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ func ConvertTimeRangeBounds(timeBound interface{}) (string, error) {
if timeBound != nil {
lowerParsed, err := time.Parse(layout, fmt.Sprint(timeBound))
if err != nil {
return "", fmt.Errorf("Unexpected lower bound value in tstzrange. Error: %v", err)
return "", fmt.Errorf("unexpected lower bound value in tstzrange. Error: %v", err)
}
convertedTime = lowerParsed.Format(postgresFormat)
} else {
Expand Down

0 comments on commit 537cf65

Please sign in to comment.