Skip to content

Commit

Permalink
Fixed linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ziflex committed Sep 17, 2021
1 parent 1f8101d commit 50af11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/drivers/http/element.go
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ func (el *HTMLElement) CountBySelector(_ context.Context, selector drivers.Query
return arr.Length(), nil
}

func (el *HTMLElement) ExistsBySelector(ctx context.Context, selector drivers.QuerySelector) (values.Boolean, error) {
func (el *HTMLElement) ExistsBySelector(_ context.Context, selector drivers.QuerySelector) (values.Boolean, error) {
if selector.Kind() == drivers.CSSSelector {
selection := el.selection.Find(selector.String())

Expand Down

0 comments on commit 50af11f

Please sign in to comment.