(self, key)
| 99 | self._graph._set_n_repr(self._ntid, self._nodes, {key: val}) |
| 100 | |
| 101 | def __delitem__(self, key): |
| 102 | if isinstance(self._ntype, list): |
| 103 | for ntid in self._ntid: |
| 104 | if self._graph._get_n_repr(ntid, ALL).get(key, None) is None: |
| 105 | continue |
| 106 | self._graph._pop_n_repr(ntid, key) |
| 107 | else: |
| 108 | self._graph._pop_n_repr(self._ntid, key) |
| 109 | |
| 110 | def _transpose(self, as_dict=False): |
| 111 | if isinstance(self._ntype, list): |
nothing calls this directly
no test coverage detected