Fix hlint issue (remove parens)

This commit is contained in:
Harendra Kumar 2021-07-29 02:46:22 +05:30
parent c949b43885
commit b9fe06b8ef

View File

@ -223,7 +223,7 @@ selectBench Options{..} f =
filterPred x =
case benchType of
Just (Compare _) ->
x <= (negate cutOffPercent) || x >= cutOffPercent
x <= negate cutOffPercent || x >= cutOffPercent
_ -> True
benchShow ::