clean up unused imports

This commit is contained in:
Keagan McClelland
2021-09-29 11:05:07 -06:00
parent 59a028f1d5
commit a563592081
2 changed files with 4 additions and 9 deletions

View File

@@ -26,7 +26,6 @@ import Yesod.Core.Types ( HandlerData(handlerEnv)
)
import qualified Yesod.Core.Unsafe as Unsafe
import qualified Control.Monad.Logger.Extras as Extra
import Control.Monad.Logger.Extras ( wrapSGRCode )
import Control.Monad.Reader.Has ( Has(extract, update) )
import Data.String.Interpolate.IsString
@@ -42,7 +41,6 @@ import System.Console.ANSI.Codes ( Color(..)
, SGR(SetColor)
)
import System.FilePath ( (</>) )
import Yesod ( defaultMessageLoggerSource )
import Yesod.Persist.Core
-- | The foundation datatype for your application. This can be a good place to

View File

@@ -51,18 +51,18 @@ import Startlude ( ($)
, (<>)
, Bool(..)
, ByteString
, Down(Down)
, Either(Left, Right)
, Down(..)
, Either(..)
, Eq((==))
, Exception
, FilePath
, IO
, Integer
, Maybe(Just, Nothing)
, Maybe(..)
, MonadIO(liftIO)
, MonadReader
, Show
, SomeException(SomeException)
, SomeException(..)
, filter
, find
, for_
@@ -70,7 +70,6 @@ import Startlude ( ($)
, headMay
, not
, partitionEithers
, print
, pure
, show
, sortOn
@@ -91,10 +90,8 @@ import System.FilePath ( (<.>)
import UnliftIO ( MonadUnliftIO
, askRunInIO
, async
, mapConcurrently
, mapConcurrently_
, newEmptyMVar
, onException
, takeMVar
, wait
)