def cleanPythonVersionFile()

in project/BuildUtils.scala [61:66]


def cleanPythonVersionFile(): Unit = {
  val pyFile = new File(pythonVersionFileName)
  if (pyFile.exists()) {
    pyFile.delete()
  }
}