Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Commit

Permalink
fix lint error formater
Browse files Browse the repository at this point in the history
  • Loading branch information
andressaabreuzup committed Mar 11, 2021
1 parent 033beb8 commit e7957d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/formula/input/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func HasRegex(input formula.Input) bool {
return len(input.Pattern.Regex) > 0
}

func inputConditionVariableExistsOnInputList(variable string, inputList formula.Inputs) (bool) {
func inputConditionVariableExistsOnInputList(variable string, inputList formula.Inputs) bool {
for _, inputListElement := range inputList {
if inputListElement.Name == variable {
return true
Expand Down

0 comments on commit e7957d1

Please sign in to comment.