(self, thing)
| 108 | pass |
| 109 | |
| 110 | def remove(self, thing): |
| 111 | # We must flag it as modified, otherwise it not be removed from the database |
| 112 | flag_dirty(thing) |
| 113 | list.remove(self, thing) |
| 114 | |
| 115 | def sort(self, *args, **kwargs): |
| 116 | # We need it here to prevent external users from accidentally sorting the list as alot of |
no outgoing calls