Kaydet (Commit) 9bfdad54 authored tarafından Aymeric Augustin's avatar Aymeric Augustin

Style cleanup forgotten in second previous commit.

üst 2bc89f83
......@@ -41,22 +41,21 @@ class AppCache(object):
self.master = master
# Mapping of labels to AppConfig instances for installed apps.
self.app_configs=OrderedDict()
self.app_configs = OrderedDict()
# Pending lookups for lazy relations
self.pending_lookups={}
self.pending_lookups = {}
# Set of app names. Allows restricting the set of installed apps.
# Used by TransactionTestCase.available_apps for performance reasons.
self.available_apps=None
self.available_apps = None
# -- Everything below here is only used when populating the cache --
self.loaded=False
self.handled=set()
self.postponed=[]
self.nesting_level=0
self._get_models_cache={}
self.loaded = False
self.handled = set()
self.postponed = []
self.nesting_level = 0
self._get_models_cache = {}
def populate(self):
"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment