Skip to content

Commit

Permalink
fix: run scalafix now that the explicit types rule is working
Browse files Browse the repository at this point in the history
  • Loading branch information
ckipp01 committed Jan 9, 2024
1 parent 5be3145 commit 4a37319
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/src-mill0.11/io/kipp/mill/scip/Scip.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import mill._
import mill.api.BuildInfo
import mill.api.Logger
import mill.api.Result
import mill.define.Discover
import mill.define.ExternalModule
import mill.define.Task
import mill.eval.Evaluator
Expand Down Expand Up @@ -319,5 +320,5 @@ object Scip extends ExternalModule {
private def computeModules(ev: Evaluator) =
ev.rootModule.millInternal.modules.collect { case j: JavaModule => j }

lazy val millDiscover = mill.define.Discover[this.type]
lazy val millDiscover: Discover[this.type] = mill.define.Discover[this.type]
}

0 comments on commit 4a37319

Please sign in to comment.