Scala allows you to import entities from same package in separate statements. However, it is generally recommended that you group such imports together. Doing so makes the code more readable and easier to navigate.
import scala.collection.mutable
import scala.collection.immutable
import scala.collection.{mutable, immutable}