Append an item to the end of the HEDString list.
(self, item)
| 979 | return hs |
| 980 | |
| 981 | def append(self, item): |
| 982 | """Append an item to the end of the HEDString list.""" |
| 983 | hs = self._validate_hed_string(item, self._schema) |
| 984 | super().append(hs.get_original_hed_string()) |
| 985 | self._objs.append(hs) |
| 986 | |
| 987 | |
| 988 | def _hed_extras_from_hed_annotations(annot): |
nothing calls this directly
no test coverage detected