Skip to content

Commit

Permalink
dunai: Group imports (KSG Haskell 1.3.0 - 3.5). Refs #285.
Browse files Browse the repository at this point in the history
Imports should be grouped between external imports, external imports
from the same project (but different libraries) and internal imports.
When groups are used, comments must be used to indicate the nature of
each group.
  • Loading branch information
ivanperez-keera committed Jun 3, 2022
1 parent 94cdbad commit 1cd7c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dunai/src/Control/Monad/Trans/MSF/List.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ module Control.Monad.Trans.MSF.List
, module Control.Monad.Trans.List
) where

-- External
-- External imports
#if !MIN_VERSION_base(4,8,0)
import Control.Applicative ((<$>))
#endif

import Control.Monad.Trans.List hiding (liftCallCC, liftCatch)

-- Internal
-- Internal imports
import Data.MonadicStreamFunction.InternalCore (MSF (MSF, unMSF))

-- * List monad
Expand Down

0 comments on commit 1cd7c6f

Please sign in to comment.