(self)
| 607 | |
| 608 | class DefaultAdminSite(LazyObject): |
| 609 | def _setup(self): |
| 610 | AdminSiteClass = import_string(apps.get_app_config("admin").default_site) |
| 611 | self._wrapped = AdminSiteClass() |
| 612 | |
| 613 | def __repr__(self): |
| 614 | return repr(self._wrapped) |
nothing calls this directly
no test coverage detected