Skip to content

Commit

Permalink
Disambiguate qualified imports
Browse files Browse the repository at this point in the history
  • Loading branch information
robx committed Feb 22, 2022
1 parent fd73c3a commit 592a48e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cabal-install/src/Distribution/Client/Init/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ import Language.Haskell.Extension ( Language(..), Extension )
import qualified System.IO

import qualified System.Directory as P
import qualified System.Process as P
import qualified System.Process as Process
import qualified Distribution.Compat.Environment as P
import System.FilePath

Expand Down Expand Up @@ -342,7 +342,7 @@ instance Interactive IO where
doesDirectoryExist = P.doesDirectoryExist
doesFileExist = P.doesFileExist
canonicalizePathNoThrow = P.canonicalizePathNoThrow
readProcessWithExitCode = P.readProcessWithExitCode
readProcessWithExitCode = Process.readProcessWithExitCode
getEnvironment = P.getEnvironment
getCurrentYear = P.getCurrentYear
listFilesInside = P.listFilesInside
Expand Down

0 comments on commit 592a48e

Please sign in to comment.