Skip to content

Commit

Permalink
Satisfy hlint
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed Dec 12, 2023
1 parent e07d0d3 commit d5466fa
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions cabal-install/src/Distribution/Client/ProjectConfig.hs
Original file line number Diff line number Diff line change
Expand Up @@ -761,8 +761,15 @@ readProjectFileSkeleton

readExtensionFile =
reportParseResult verbosity extensionDescription extensionFile
=<< parseProjectSkeleton distDownloadSrcDirectory httpTransport verbosity [] extensionFile
=<< (fmap (0,) $ BS.readFile extensionFile)
=<< ( parseProjectSkeleton
distDownloadSrcDirectory
httpTransport
verbosity
[]
extensionFile
. (0,)
)
=<< BS.readFile extensionFile

-- | Render the 'ProjectConfig' format.
--
Expand Down

0 comments on commit d5466fa

Please sign in to comment.