(self, current_model, field)
| 29 | return tuple((f.name, m) for f, m in res) |
| 30 | |
| 31 | def _model(self, current_model, field): |
| 32 | model = field.model._meta.concrete_model |
| 33 | return None if model == current_model else model |
| 34 | |
| 35 | def _details(self, current_model, relation): |
| 36 | direct = isinstance(relation, (Field, GenericForeignKey)) |
nothing calls this directly
no outgoing calls
no test coverage detected