Skip to content

Commit

Permalink
Fix imports of MTL
Browse files Browse the repository at this point in the history
  • Loading branch information
tchoutri committed Jan 19, 2024
1 parent a0dbf8b commit d4eda99
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/Tutorial.hs
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ import Database.PostgreSQL.Simple.ToField
import Database.PostgreSQL.Transact (DBT)
import GHC.Generics

import Control.Monad.Error
import qualified Data.Time as Time
import qualified Data.UUID.V4 as UUID
import Database.PostgreSQL.Entity
import Database.PostgreSQL.Entity.DBT
import Database.PostgreSQL.Entity.Types
import Control.Monad.IO.Class (MonadIO (..))

-- And let's write down our initial data models for a blog. `Author`, and `BlogPost`.

Expand Down
1 change: 0 additions & 1 deletion pg-entity.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ library
, text-display ^>=0.0
, text-manipulate ^>=0.3
, time ^>=1.12
, uuid ^>=1.3
, vector ^>=0.13

if flag(prod)
Expand Down
1 change: 1 addition & 0 deletions test/Utils.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module Utils where
import Control.Exception.Safe
import Control.Monad.IO.Class
import Control.Monad.Reader
import Control.Monad (void)

Check warning on line 9 in test/Utils.hs

View workflow job for this annotation

GitHub Actions / 8.8.4 on ubuntu-latest

The import of ‘Control.Monad’ is redundant

Check warning on line 9 in test/Utils.hs

View workflow job for this annotation

GitHub Actions / 8.10.7 on ubuntu-latest

The import of ‘Control.Monad’ is redundant

Check warning on line 9 in test/Utils.hs

View workflow job for this annotation

GitHub Actions / 9.0.2 on ubuntu-latest

The import of ‘Control.Monad’ is redundant

Check warning on line 9 in test/Utils.hs

View workflow job for this annotation

GitHub Actions / 9.2.8 on ubuntu-latest

The import of ‘Control.Monad’ is redundant

Check warning on line 9 in test/Utils.hs

View workflow job for this annotation

GitHub Actions / 9.4.8 on ubuntu-latest

The import of ‘Control.Monad’ is redundant
import Data.ByteString (ByteString)
import Data.Kind
import Data.Pool (Pool)
Expand Down

0 comments on commit d4eda99

Please sign in to comment.