Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: EdricCua <[email protected]>
  • Loading branch information
EdricCua committed Jan 8, 2025
1 parent 9e5d2e5 commit d2dd403
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go/api/base_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,8 @@ func (client *baseClient) Restore(key string, ttl int64, value string) (Result[s
}

func (client *baseClient) RestoreWithOptions(key string, ttl int64,
value string, options *RestoreOptions) (Result[string], error) {
value string, options *RestoreOptions,
) (Result[string], error) {
optionArgs, err := options.toArgs()
if err != nil {
return CreateNilStringResult(), err
Expand Down

0 comments on commit d2dd403

Please sign in to comment.