Skip to content

Commit

Permalink
fix scala 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ValdemarGr committed Sep 4, 2023
1 parent b83b336 commit 4479195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/gql/SchemaShape.scala
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ object SchemaShape {
type H[A] = StateT[G, Set[String], A]
val S = Stateful[H, Set[String]]
val H = Monad[H]
implicit lazy val parForState = Parallel.identity[H]
implicit lazy val parForState: Parallel[H] = Parallel.identity[H]

def nextIfNotSeen(tl: Toplevel[F, ?])(ha: => H[A]): H[A] =
S.get.flatMap { seen =>
Expand Down

0 comments on commit 4479195

Please sign in to comment.