Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
derfenix committed Nov 1, 2023
1 parent e652abb commit 3147a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapters/repository/badgers3/marshal.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ func marshal(v interface{}) ([]byte, error) {
return msgpack.Marshal(v)
}

func unmarshal(b []byte, v interface{}) error {
func unmarshal(b []byte, v interface{}) error { //nolint:unused // will use later
return msgpack.Unmarshal(b, v)
}

0 comments on commit 3147a0b

Please sign in to comment.