Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

Commit

Permalink
fixes nits from pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
meghfossa committed Jul 23, 2021
1 parent 00cd971 commit 63296c6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Strategy/Elixir/MixTree.hs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import Effect.Exec (AllowErr (Never), Command (..), Exec, execParser)
import Effect.Logger (Logger, logWarn)
import Graphing (Graphing, unfold)
import Path
import Prettyprinter.Internal (pretty)
import Prettyprinter (pretty)
import Text.Megaparsec (
MonadParsec (eof, takeWhile1P, takeWhileP, try),
Parsec,
Expand Down Expand Up @@ -178,9 +178,7 @@ parseDepSCM :: Parser DepSCM
parseDepSCM = try parseDepHex <|> parseDepSCMGit <|> parseDepSCMOther
where
parseDepHex :: Parser DepSCM
parseDepHex = do
_ <- chunk "Hex package"
pure (Hex)
parseDepHex = Hex <$ chunk "Hex package"

parseDepSCMGit :: Parser DepSCM
parseDepSCMGit = do
Expand Down

0 comments on commit 63296c6

Please sign in to comment.