Remove unused MatchOperator import

This commit is contained in:
stuart nelson 2017-04-24 14:59:58 +02:00
parent 2ae96e845d
commit 06a37d66e2
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
module Views.AlertList.Parsing exposing (alertsParser) module Views.AlertList.Parsing exposing (alertsParser)
import UrlParser exposing ((</>), (<?>), Parser, int, map, oneOf, parseHash, s, string, stringParam) import UrlParser exposing ((</>), (<?>), Parser, int, map, oneOf, parseHash, s, string, stringParam)
import Utils.Filter exposing (Filter, parseMatcher, MatchOperator(Eq, RegexMatch)) import Utils.Filter exposing (Filter, parseMatcher, MatchOperator(RegexMatch))
boolParam : String -> UrlParser.QueryParser (Maybe Bool -> a) a boolParam : String -> UrlParser.QueryParser (Maybe Bool -> a) a