Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit b020cfb

Browse files
committed
Corrected MonadTypes import
1 parent c2daf85 commit b020cfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Haskell/Ide/Engine/Plugin/Ormolu.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44

55
module Haskell.Ide.Engine.Plugin.Ormolu ( ormoluDescriptor ) where
66

7+
import Haskell.Ide.Engine.MonadTypes
8+
79
#if __GLASGOW_HASKELL__ >= 806
810
import Control.Exception
911
import Control.Monad.IO.Class ( liftIO , MonadIO(..) )
1012
import Data.Aeson ( Value ( Null ) )
1113
import Data.Text
12-
import Haskell.Ide.Engine.MonadTypes
14+
import Haskell.Ide.Engine.MonadFunctions
1315
import Ormolu
1416
import Ormolu.Config (defaultConfig)
1517
import Ormolu.Exception (OrmoluException)
1618
import Haskell.Ide.Engine.PluginUtils
17-
#else
18-
import Haskell.Ide.Engine.MonadFunctions
1919
#endif
2020

2121
ormoluDescriptor :: PluginId -> PluginDescriptor

0 commit comments

Comments
 (0)