79557824

Date: 2025-04-06 05:33:11
Score: 1
Natty:
Report link

You declared 3 different labels, but you added the same one to the layout 3 times, instead of adding "label","label1","label2", you added "label","label","label"

Change the code to:

        layout.addWidget(label, 0, 0)
        layout.addWidget(label1, 0, 1)
        layout.addWidget(label2, 0, 2)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Liam stevens