All Downloads are FREE. Search and download functionalities are using the official Maven repository.

python.PythonVariable.kt Maven / Gradle / Ivy

package python

interface PythonVariable {
    val variableName: String
}

fun PythonVariable?.toPythonVariableNameOrNone(): String {
    return this?.variableName ?: "None"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy