diff --git a/django/apps/config.py b/django/apps/config.py index 484fb3c2040a..fafc815805c7 100644 --- a/django/apps/config.py +++ b/django/apps/config.py @@ -17,12 +17,6 @@ def __init__(self, app_name, app_module): # Full Python path to the application e.g. 'django.contrib.admin'. self.name = app_name - - - - - - # Root module for the application e.g. . self.module = app_module @@ -258,14 +252,8 @@ def get_models(self, include_auto_created=False, include_swapped=False): Keyword arguments aren't documented; they're a private API. """ - - - - self.apps.check_models_ready() - - for model in self.models.values(): if model._meta.auto_created and not include_auto_created: continue