Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix imports of MTL
Browse files Browse the repository at this point in the history
tchoutri committed Jan 19, 2024
1 parent a0dbf8b commit 2b6759c
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
@@ -28,7 +28,7 @@ import Database.PostgreSQL.Simple.ToField
import Database.PostgreSQL.Transact (DBT)
import GHC.Generics

import Control.Monad.Error
import Control.Monad.IO.Class (MonadIO (..))
import qualified Data.Time as Time
import qualified Data.UUID.V4 as UUID
import Database.PostgreSQL.Entity
1 change: 0 additions & 1 deletion pg-entity.cabal
Original file line number Diff line number Diff line change
@@ -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)
1 change: 1 addition & 0 deletions test/Utils.hs
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@
module Utils where

import Control.Exception.Safe
import Control.Monad (void)

Check warning on line 7 in test/Utils.hs

GitHub Actions / 8.8.4 on ubuntu-latest

The import of ‘Control.Monad’ is redundant

Check warning on line 7 in test/Utils.hs

GitHub Actions / 8.10.7 on ubuntu-latest

The import of ‘Control.Monad’ is redundant

Check warning on line 7 in test/Utils.hs

GitHub Actions / 9.0.2 on ubuntu-latest

The import of ‘Control.Monad’ is redundant

Check warning on line 7 in test/Utils.hs

GitHub Actions / 9.2.8 on ubuntu-latest

The import of ‘Control.Monad’ is redundant

Check warning on line 7 in test/Utils.hs

GitHub Actions / 9.4.8 on ubuntu-latest

The import of ‘Control.Monad’ is redundant
import Control.Monad.IO.Class
import Control.Monad.Reader
import Data.ByteString (ByteString)

0 comments on commit 2b6759c

Please sign in to comment.