On load the module to shape library the BPMN RPA Studio crash, and don't show any error message.
Python 3.9.13
class hello_world:
def __init__(self):
self.variable = "Hello world"
def write_to_file(self):
"""
Escreve o valor da variável (variable)
no arquivo hello.txt na pasta de execução
do projeto.
"""
f = open("hello.txt","w")
f.write(self.variable)
f.close()
if __name__ == "__main__":
hw = hello_world()
hw.write_to_file()
On load the module to shape library the BPMN RPA Studio crash, and don't show any error message.
Python 3.9.13