Skip to content

Commit

Permalink
Stylish
Browse files Browse the repository at this point in the history
  • Loading branch information
bolt12 committed Jul 6, 2023
1 parent 66e6e93 commit d7469f4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
11 changes: 5 additions & 6 deletions cardano-api/internal/Cardano/Api/Error.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ module Cardano.Api.Error
) where

import Control.Exception (Exception (..), IOException, throwIO)
import Control.Monad.Except (throwError)
import Control.Monad.IO.Class (MonadIO)
import Control.Monad.Trans.Except (ExceptT)
import Control.Monad.Trans.Except.Extra (handleIOExceptT)
import System.Directory (doesFileExist)
import System.IO (Handle)
import Control.Monad.Trans.Except (ExceptT)
import Control.Monad.Trans.Except.Extra (handleIOExceptT)
import Control.Monad.IO.Class (MonadIO)
import System.Directory (doesFileExist)
import Control.Monad.Except (throwError)


class Show e => Error e where

Expand Down
2 changes: 1 addition & 1 deletion cardano-api/internal/Cardano/Api/Keys/Read.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import Cardano.Api.SerialiseBech32
import Cardano.Api.SerialiseTextEnvelope
import Cardano.Api.Utils

import Control.Monad.Except (runExceptT)
import Data.Bifunctor
import Data.List.NonEmpty (NonEmpty)
import Control.Monad.Except (runExceptT)

-- | Read a cryptographic key from a file.
--
Expand Down
4 changes: 2 additions & 2 deletions cardano-api/internal/Cardano/Api/Protocol.hs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ module Cardano.Api.Protocol

import Cardano.Api.Modes

import Data.Bifunctor (bimap)

import Ouroboros.Consensus.Block.Forging (BlockForging)
import Ouroboros.Consensus.Cardano
import Ouroboros.Consensus.Cardano.Block
Expand All @@ -39,6 +37,8 @@ import Ouroboros.Consensus.Shelley.Node.Praos
import Ouroboros.Consensus.Shelley.ShelleyHFC (ShelleyBlockHFC)
import Ouroboros.Consensus.Util.IOLike (IOLike)

import Data.Bifunctor (bimap)

import Type.Reflection ((:~:) (..))

class (RunNode blk, IOLike m) => Protocol m blk where
Expand Down
4 changes: 2 additions & 2 deletions cardano-api/internal/Cardano/Api/SerialiseLedgerCddl.hs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ import Cardano.Api.Utils
import Cardano.Ledger.Binary (DecoderError)
import qualified Cardano.Ledger.Binary as CBOR

import Control.Monad.Trans.Except.Extra (firstExceptT, hoistEither,
newExceptT, runExceptT)
import Control.Monad.Trans.Except.Extra (firstExceptT, hoistEither, newExceptT,
runExceptT)
import Data.Aeson
import qualified Data.Aeson as Aeson
import Data.Aeson.Encode.Pretty (Config (..), defConfig, encodePretty', keyOrder)
Expand Down

0 comments on commit d7469f4

Please sign in to comment.