Skip to content

Commit

Permalink
Fix lint again
Browse files Browse the repository at this point in the history
Signed-off-by: George Robinson <[email protected]>
  • Loading branch information
grobinson-grafana committed Aug 22, 2023
1 parent a371c2a commit 2cd6fba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions matchers/parse/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,8 @@ func (p *Parser) parseComma(l *Lexer) (parseFunc, error) {
}
if tok.Kind == TokenCloseBrace {
return p.parseCloseBrace, nil
} else {
return p.parseMatcher, nil
}
return p.parseMatcher, nil
}

func (p *Parser) parseEOF(l *Lexer) (parseFunc, error) {
Expand Down

0 comments on commit 2cd6fba

Please sign in to comment.