Skip to content

Commit

Permalink
satisfy hlint's import complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-martin committed May 30, 2024
1 parent 899e8ca commit b0540f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Blammo/Logging/LoggingT.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ import Control.Monad.Fail (MonadFail (..))
#endif

#if MIN_VERSION_base(4, 19, 0)
#else
import Control.Applicative (Applicative (..))
#else
import Control.Applicative (Alternative (..), Applicative (..))
#endif

import Blammo.Logging.Internal.LogAction
import Blammo.Logging.Internal.LoggerLogAction (loggerLogAction)
import Blammo.Logging.Logger
import Control.Applicative (Alternative (..))
import Control.Lens ((^.))
import Control.Monad.Base (MonadBase (..))
import Control.Monad.Catch (MonadCatch (..), MonadMask (..), MonadThrow (..))
Expand Down

0 comments on commit b0540f3

Please sign in to comment.