```+ Goal.by_name('repl').uninstall_task('scala')...
# general
b
Copy code
+  Goal.by_name('repl').uninstall_task('scala')
+
+  class FixedScalaRepl(ScalaRepl):
+    @classmethod
+    def select_targets(cls, target):
+      return super(FixedScalaRepl, cls).select_targets(target) or isinstance(target, JvmApp)
+
+  task(
+    name='scala',
+    action=FixedScalaRepl,
+  ).install('repl')
🍻 1