(self)
| 847 | |
| 848 | @cached_property |
| 849 | def _relation_tree(self): |
| 850 | return self._populate_directed_relation_graph() |
| 851 | |
| 852 | def _expire_cache(self, forward=True, reverse=True): |
| 853 | # This method is usually called by apps.cache_clear(), when the |
nothing calls this directly
no test coverage detected