lint: remove embedded field that's unnecessary

This commit is contained in:
Eli Ribble 2026-05-19 15:24:56 +00:00
parent 12e9599c15
commit 1f7b4cede2
No known key found for this signature in database

View file

@ -20,7 +20,7 @@ type Tx struct {
}
func (txn Tx) ExecContext(ctx context.Context, query string, args ...any) (sql.Result, error) {
result, err := txn.Tx.Exec(ctx, query, args...)
result, err := txn.Exec(ctx, query, args...)
if err != nil {
return Result{}, fmt.Errorf("exec: %w", err)
}