Skip to content

Commit

Permalink
Make linter green again
Browse files Browse the repository at this point in the history
  • Loading branch information
waybackarchiver committed Aug 17, 2024
1 parent b9e3869 commit c1e6d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reduxer/reduxer.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func Do(ctx context.Context, opts *config.Options, urls ...*url.URL) (Reduxer, e
g.Go(func() error {
basename := strings.TrimSuffix(helper.FileName(uri.String(), ""), ".html")
basename = strings.TrimSuffix(basename, ".htm")
ctx = context.WithValue(ctx, ctxBasenameKey, basename)
ctx = context.WithValue(ctx, ctxBasenameKey, basename) // nolint:staticcheck

shot, er := capture(ctx, opts, uri, dir)
if er != nil {
Expand Down

0 comments on commit c1e6d90

Please sign in to comment.