Formatting Code base with ktlint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / services / execution-service / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / services / execution / scripts / PythonExecutorConfiguration.kt
index 658b0c2..0a22094 100644 (file)
@@ -32,6 +32,7 @@ open class PythonExecutorConfiguration
 
 @Configuration
 open class PythonExecutorProperty {
+
     @Value("\${blueprints.processor.functions.python.executor.executionPath}")
     lateinit var executionPath: String
     @Value("#{'\${blueprints.processor.functions.python.executor.modulePaths}'.split(',')}")
@@ -44,8 +45,12 @@ class PythonExecutorConstants {
     }
 }
 
-open class BluePrintPython(executablePath: String, blueprintPythonPlatform: MutableList<String>,
-                           val argv: MutableList<String>){
+open class BluePrintPython(
+    executablePath: String,
+    blueprintPythonPlatform: MutableList<String>,
+    val argv: MutableList<String>
+) {
+
     lateinit var moduleName: String
     lateinit var pythonClassName: String
     lateinit var content: String
@@ -65,4 +70,4 @@ open class BluePrintPython(executablePath: String, blueprintPythonPlatform: Muta
         props.setProperty("python.verbose", "error")
         props.setProperty("python.executable", executablePath)
     }
-}
\ No newline at end of file
+}