Search found 1 match

by malcomjarr
Mon Aug 08, 2022 6:18 am
Forum: Analysis
Topic: 'NoneType' object has no attribute 'id'
Replies: 14
Views: 137003

Re: 'NoneType' object has no attribute 'id'

AttributeError means that there was an Error that had to do with an Attribute request. In general, when you write x.y, y is the purported attribute of x. NoneType means that instead of an instance of whatever Class or Object you think you're working with, you've actually got None. That usually means ...