diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-18 18:50:03 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-18 18:50:03 +0100 |
commit | 40015c9ffb6863b7df68e950ee24b75024de6042 (patch) | |
tree | c2a5411a722d6192beec16ede55c6a1d1b2377ca | |
parent | 4896804069ea2b098f5dda2d0135d667778a4741 (diff) |
Fixup Monad imports in Eval and Run
-rw-r--r-- | src/Command/Run.hs | 1 | ||||
-rw-r--r-- | src/Eval.hs | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/Command/Run.hs b/src/Command/Run.hs index fd5b6d7..7c6162a 100644 --- a/src/Command/Run.hs +++ b/src/Command/Run.hs @@ -6,7 +6,6 @@ import Control.Concurrent import Control.Concurrent.STM import Control.Exception import Control.Monad -import Control.Monad.Except import Control.Monad.IO.Class import Data.Either diff --git a/src/Eval.hs b/src/Eval.hs index b263a19..a071770 100644 --- a/src/Eval.hs +++ b/src/Eval.hs @@ -6,6 +6,7 @@ module Eval ( evalJobSet, ) where +import Control.Monad import Control.Monad.Except import Data.Bifunctor |