Skip to content

Commit

Permalink
fixup! squash! Hackport.Env: Fix warnings message
Browse files Browse the repository at this point in the history
  • Loading branch information
hololeap committed Sep 22, 2024
1 parent 468c8d9 commit c869e97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/Hackport/Env.hs
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ module Hackport.Env
, WritesMetadata (..)
, UseHackageRemote
-- * Re-exports
, module Control.Monad.IO.Class
, module Control.Monad
, module Control.Monad.Reader
) where

import Control.Monad (unless)
import Control.Monad.IO.Class (MonadIO, liftIO)
import Control.Monad.Reader (ReaderT, runReaderT, asks)
import Control.Monad
import Control.Monad.Reader
import Control.Monad.State.Strict (StateT, MonadState, runStateT, get, modify)
import qualified Data.DList as DL
import qualified Data.List as L
Expand Down
2 changes: 1 addition & 1 deletion src/Overlays.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import System.FilePath ((</>), splitPath, joinPath)
import Error
import Portage.Host
import Util (info)
import Hackport.Env
import Hackport.Env hiding (local)

-- getOverlayPath :: forall m. (HasGlobalEnv m, MonadIO m) => m String
getOverlayPath :: Env env String
Expand Down

0 comments on commit c869e97

Please sign in to comment.