79480706

Date: 2025-03-03 10:06:48
Score: 0.5
Natty:
Report link

This error happens because there is no attribute 'checkButtonGroup' in your MainWindow class.

You need to define a checkButtonGroup method to your MainWindow class, something like:

class MainWindow(QMainWindow):
    def __init__(self, parent=None):

    def checkButtonGroup(self):
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Qian