summaryrefslogtreecommitdiff
path: root/src/Propellor/Property.hs
diff options
context:
space:
mode:
authorJoey Hess2016-06-19 13:17:35 -0400
committerJoey Hess2016-06-19 13:17:35 -0400
commitf6cc964592f8ad6f669abd27b3f04ab65eccb245 (patch)
tree30b4fa77898561c5c395c84fcbcef0fa67cbfad4 /src/Propellor/Property.hs
parentc017788490caddd222c3a977ad32ec00a61a266e (diff)
avoid import warning about Foldable
I don't know why this works, or a better way to do it, but it does..
Diffstat (limited to 'src/Propellor/Property.hs')
-rw-r--r--src/Propellor/Property.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Property.hs b/src/Propellor/Property.hs
index fe314941..f23fd3ba 100644
--- a/src/Propellor/Property.hs
+++ b/src/Propellor/Property.hs
@@ -54,8 +54,8 @@ import System.Posix.Files
import qualified Data.Hash.MD5 as MD5
import Data.List
import Control.Applicative
-import Data.Foldable (Foldable, foldr1)
-import Prelude hiding (Foldable)
+import Data.Foldable
+import Prelude
import Propellor.Types
import Propellor.Types.Core