I\'m having issues with a custom signal in a class I made.
Relevant code:
self.parse_triggered = QtCore.pyqtSignal() def parseFile(self): self.e
I had the same problem. I forgot that if a class uses Signals, then it must inherit from QObject. I was doing some re-factoring and did not pay attention to this.