set_disco_info_value
Descripción
Establece un valor fijo en la variable 'info'.
Parámetros
Nombre | Tipo | Requerido | Descripción |
value | str | Si | El valor a establecer en la variable 'info'. Por defecto es una cadena vacía. |
Return
Tipo |
None |
Versión
- 1.0.0
Ejemplo
import pandoraPluginToolspandoraPlugintools as pt
# Set a value to the _INFO variable
pt.set_disco_info_value("This is some information about the discovery.")
# Verify by printing the updated _INFO
print(discovery._INFO)