Skip to content

Commit 8538782

Browse files
committed
fixed lint
1 parent f8b99b3 commit 8538782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/bind/params.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ func asUUID(v any) (value.Value, bool) {
3939
case uuidPtrType:
4040
vv := v.(*uuid.UUID) //nolint:forcetypeassert
4141
if vv == nil {
42-
4342
return value.NullValue(types.UUID), true
4443
}
4544

@@ -111,6 +110,7 @@ func asSQLNullGeneric(v any) (value.Value, bool) {
111110
if err != nil {
112111
return value.NullValue(types.Text), true
113112
}
113+
114114
return value.NullValue(nullType), true
115115
}
116116

0 commit comments

Comments
 (0)