r"""Remove extra selfloops from the graph.
(self)
| 333 | self._clear_cache() |
| 334 | |
| 335 | def remove_extra_selfloop(self): |
| 336 | r"""Remove extra selfloops from the graph.""" |
| 337 | self._has_extra_selfloop = False |
| 338 | self._clear_cache() |
| 339 | |
| 340 | def remove_selfloop(self): |
| 341 | r"""Remove all selfloops from the graph.""" |
no test coverage detected