Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

readme.md

AttributeError: 'NoneType' object has no attribute 'append'

Reproduce

data = None
data.append("new item")

Error Message

AttributeError: 'NoneType' object has no attribute 'append'

Fix

data = []

data.append("new item")

Reflection

Tried to call append on None.

Reference