diff options
| author | Ben Sima <ben@bensima.com> | 2025-11-22 14:46:28 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-11-22 14:46:28 -0500 |
| commit | 92cf4655e8799c53fe588149ac39748234ce582b (patch) | |
| tree | 2547b878a3ad05baef968ffa2ed25449fa22aba8 | |
| parent | 37079340575260db4cdb31d1f6d97ee23deff102 (diff) | |
fix: remove unused import in Omni/Agent.hs
Amp-Thread-ID:
https://ampcode.com/threads/T-ca3b086b-5a85-422a-b13d-256784c04221
Co-authored-by: Amp <amp@ampcode.com>
| -rw-r--r-- | Omni/Agent.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Omni/Agent.hs b/Omni/Agent.hs index be0b7e7..d94949c 100644 --- a/Omni/Agent.hs +++ b/Omni/Agent.hs @@ -24,7 +24,6 @@ import qualified System.Exit as Exit import System.FilePath ((</>)) import qualified System.IO as IO import qualified System.IO.Temp as Temp -import qualified System.Process as Process main :: IO () main = Cli.main plan @@ -79,7 +78,7 @@ move args | args `Cli.has` Cli.command "setup" = setup args | otherwise = putStrLn (Cli.usage help) -getArgOrExit :: Cli.Arguments -> Cli.Option -> IO String +getArgOrExit :: Cli.Arguments -> Docopt.Option -> IO String getArgOrExit args opt = case Cli.getArg args opt of Just val -> pure val |
