1
1
mirror of https://github.com/github/semantic.git synced 2025-01-03 04:51:57 +03:00

Cleanup use of qualified Prelude

This commit is contained in:
Timothy Clem 2016-09-27 12:59:01 -07:00
parent d175993a3f
commit bbc6f06185

View File

@ -1,14 +1,13 @@
module Arguments (Arguments(..), args) where
import Data.Functor.Both
import qualified Prelude as P
import Prelude
import qualified Renderer as R
-- | The command line arguments to the application.
data Arguments = Arguments {
format :: R.Format,
maybeShas :: Both (Maybe P.String),
maybeShas :: Both (Maybe String),
maybeTimeout :: Maybe Float,
output :: Maybe FilePath,
filePaths :: [FilePath] }