TIL about slots in python: https://stackoverflow.com/questions/472000/usage-of-slots Basically statically allocating python attributes. The benefit would be to guard against typos frustrating users. For instance `cell.materail = mat`.
TIL about slots in python: https://stackoverflow.com/questions/472000/usage-of-slots
Basically statically allocating python attributes. The benefit would be to guard against typos frustrating users. For instance
cell.materail = mat.