joostvangils / BPMN_RPA

Robotic Process Automation in Windows and Linux by using Diagrams.net BPMN diagrams.
GNU General Public License v3.0
40 stars 8 forks source link

Crash without message on load module to library. #16

Closed pliniopvv closed 1 month ago

pliniopvv commented 6 months ago

On load the module to shape library the BPMN RPA Studio crash, and don't show any error message.

Python 3.9.13 image

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()
joostvangils commented 1 month ago

newest version is 28.0.0. See https://1ic.nl/download

pliniopvv commented 1 month ago

How fix this message?

image