Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions django/apps/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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. <module 'django.contrib.admin'
# from 'django/contrib/admin/__init__.py'>.
self.module = app_module
Expand Down Expand Up @@ -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
Expand Down