if groupName.group == "None":
error:
AttributeError: 'NoneType' object has no attribute 'group'
How to check if object has an attribute?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The error message is telling you that
groupNameitself isNone.In which case, there’s little point in testing whether it has a particular attribute.
So you probably want something more like:
Or, if
groupNameobjects may not have agroupattribute:(Note: the last argument of
getattris a default value that can be anything you want).