Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
imperfect-fourth committed Nov 28, 2024
1 parent ccd68a7 commit 8a46952
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unsafe/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package unsafe

import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
Expand Down Expand Up @@ -93,7 +94,7 @@ func (aq ActionQuery[M]) Variables() map[string]interface{} {
}

func (aq ActionQuery[M]) Exec(client *eywa.Client) (*M, error) {
respBytes, err := client.Do(aq)
respBytes, err := client.Do(context.Background(), aq)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 8a46952

Please sign in to comment.