From aa1e10e3e999ab5fcde19ce79dbfe2b8fb0c981f Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Mon, 27 Nov 2017 09:24:28 +0100 Subject: [PATCH] Remove redundant import --- src/Handler/Utils/StudyFeatures.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Handler/Utils/StudyFeatures.hs b/src/Handler/Utils/StudyFeatures.hs index 467897ca1..407f0a1a2 100644 --- a/src/Handler/Utils/StudyFeatures.hs +++ b/src/Handler/Utils/StudyFeatures.hs @@ -13,8 +13,6 @@ import Data.Bifunctor import Text.Parsec import Text.Parsec.Text -import Data.List (foldl') - parseStudyFeatures :: UserId -> Text -> Either Text [StudyFeatures] parseStudyFeatures uId = first tshow . parse (pStudyFeatures uId <* eof) ""