79353550

Date: 2025-01-13 22:16:01
Score: 1.5
Natty:
Report link

None of the above fixed my problem. Apparently sometimes Python doesn't like the subclass to inherit @properties. See this screenshot:

enter image description here

parent_graph used to be an @property and the same analogous error you see displayed in the picture occured. Now I made it into a regular method. So now it gets past that error and moves onto the next uninherited @property which is ambient_space. So now you can imagine what I have to do: take away @property's in practically my whole project.

Arrow is using single inheritance from base class Base which in turn singly inherits from QGraphicsObject. I am definitely calling the super().__init__() appropriately.

Reasons:
  • Blacklisted phrase (1): I have to do
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @properties
  • User mentioned (0): @property
  • User mentioned (0): @property
  • User mentioned (0): @property's
  • Low reputation (0.5):
Posted by: Daniel Donnelly