Iām having a reoccurring problem when trying to connect a method to a signal in Pyside
Inside my class :
myButton = QPushButton()
someLineEdit = QLineEdit()
myButton.clicked.connect(self._someMethod (someLineEdit))
The _someMethod function is a class method
When I include arguments in my method, the error states ā Failed to connect signal clicked()ā
If I remove arguments from the method, it connects fine. I have tested this passing in a simple string instead, but still get the same error
Is there a workaround , or known limitations in using connect in this manner ?