On my code I'm getting RecursionError: maximum recursion depth exceeded
and only clue that I'm getting from a traceback is File "q.py", line 523, in __init__
self.background = Background(source='images/space.png')
repeated like 30 times. I checked the line but can't see anything wrong with it. I should also mention that this error occurred out of the blue. The code worked flawlessly.
Is there a way how to determine what exactly is causing it ? I'm aware that recursion usually means that some function is calling itself but I haven't found anything. Can't share the code because it's extensive.