Skip to content

Commit 6847931

Browse files
committed
Removes unecessary constraints
1 parent a92ddb9 commit 6847931

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

circuitflow.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cabal-version: 2.0
33
-- For further documentation, see http://haskell.org/cabal/users-guide/
44

55
name: circuitflow
6-
version: 0.3.0.0
6+
version: 0.3.0.1
77
-- synopsis:
88
-- description:
99
homepage: https://github.com/RileyEv/project

src/Pipeline/Task.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ functionTask f = multiInputTask (\(HCons inp HNil) -> f inp)
8787

8888
-- | Constructor for a task
8989
task
90-
:: (DataStore' fs as, DataStore g b, Eq (g b), Show (g b), NFData (g b))
90+
:: (DataStore' fs as, DataStore g b, Eq (g b))
9191
=> (HList' fs as -> g b -> ExceptT SomeException IO ()) -- ^ The function a Task will execute.
9292
-> Circuit fs as '[g] '[b] (Length fs)
9393
task f = IIn5 (inj (Task f))

0 commit comments

Comments
 (0)