How do I fix NoneType attribute error in Python?

NoneType attribute error in Python? Recently while running a Python program I encountered an error AttributeError: ‘NoneType’ object has no attribute ‘xxx’. When looking at the code, I could not initially identify why this was happening. Later on I realized that I was setting an attribute on a function that was returning ‘None’ . Therefore … Read more