Skip to content

Commit

Permalink
Hide Data.List.List import
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos authored and sol committed Nov 17, 2023
1 parent d1dfdca commit 29f646b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Imports.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{-# LANGUAGE CPP #-}
module Imports (module Imports) where

import Control.Applicative as Imports
Expand All @@ -6,7 +7,11 @@ import Control.Exception as Imports (Exception(..))
import Control.Monad as Imports
import Control.Monad.IO.Class as Imports
import Data.Bifunctor as Imports
#if MIN_VERSION_base(4,20,0)
import Data.List as Imports hiding (List, sort, nub)
#else
import Data.List as Imports hiding (sort, nub)
#endif
import Data.Monoid as Imports (Monoid(..))
import Data.Semigroup as Imports (Semigroup(..))
import Data.String as Imports
Expand Down

0 comments on commit 29f646b

Please sign in to comment.