Returns true if `entity` is an instance of :class:`.EntityList` or :class:`mixbox.entities.EntityList`.
(entity)
| 153 | |
| 154 | |
| 155 | def is_entitylist(entity): |
| 156 | """Returns true if `entity` is an instance of :class:`.EntityList` |
| 157 | or :class:`mixbox.entities.EntityList`. |
| 158 | |
| 159 | """ |
| 160 | return isinstance(entity, (EntityList, stix.EntityList)) |
| 161 | |
| 162 | |
| 163 | def is_typedlist(entity): |