(self)
| 1397 | |
| 1398 | @property |
| 1399 | def _auto_import(self): |
| 1400 | if self.auto_import_method is None: |
| 1401 | return None |
| 1402 | if not hasattr(self, "_auto_import_func"): |
| 1403 | self._auto_import_func = import_item(self.auto_import_method) |
| 1404 | return self._auto_import_func |
| 1405 | |
| 1406 | |
| 1407 | def get__all__entries(obj): |
nothing calls this directly
no test coverage detected