(self)
| 118 | |
| 119 | @cached_property |
| 120 | def related_model(self): |
| 121 | # Can't cache this property until all the models are loaded. |
| 122 | apps.check_models_ready() |
| 123 | return self.remote_field.model |
| 124 | |
| 125 | def check(self, **kwargs): |
| 126 | return [ |
nothing calls this directly
no test coverage detected