Skip to content

Commit

Permalink
yampa: Make imports explicit (KSG Haskell 1.3.0 - 3.5). Refs #266.
Browse files Browse the repository at this point in the history
Imports should be explicit (aka. no wildcard imports).
  • Loading branch information
ivanperez-keera committed Apr 29, 2023
1 parent f0ca2d5 commit a2aef19
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions yampa/src/FRP/Yampa/Event.hs
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,15 @@ module FRP.Yampa.Event
where

-- External imports
import Control.Applicative
#if !MIN_VERSION_base(4,8,0)
import Control.Applicative (Applicative (..), (<$>))
#endif
import Control.Applicative (Alternative (..))
import Control.DeepSeq (NFData (..))
import qualified Control.Monad.Fail as Fail

-- Internal imports
import FRP.Yampa.Diagnostics
import FRP.Yampa.Diagnostics (usrErr)

infixl 8 `tag`, `attach`, `gate`
infixl 7 `joinE`
Expand Down

0 comments on commit a2aef19

Please sign in to comment.