function calling another function gives error

-1

I am initiating a function based on a QpushButton. The function in tern calls another function. It is like a chain: button call a first function and first function calls second.

I get "Process finished with exit code -1073740791 (0xC0000409)". If I do not call call second function, everything seems fine. Any suggestion how to fix it.

    def loadIns_app(self):  
        print("Loading Waveforms")
        self.readBitCheck(self)

    def readBitCheck(self): 
        print("Read Values")
python
function
asked on Stack Overflow Jan 19, 2020 by kristo • edited Jan 19, 2020 by eyllanesc

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0