Skip to content

Commit

Permalink
Merge pull request #1045 from sudo-bmitch/pr-lint-unused-var
Browse files Browse the repository at this point in the history
Fix unused variable linting error
  • Loading branch information
sajayantony authored Apr 5, 2023
2 parents dd7fd71 + f4fc83a commit 6511076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (v Validator) Validate(src io.Reader) error {

type unimplemented string

func (v unimplemented) Validate(src io.Reader) error {
func (v unimplemented) Validate(_ io.Reader) error {
return fmt.Errorf("%s: unimplemented", v)
}

Expand Down

0 comments on commit 6511076

Please sign in to comment.