There was an error while loading. Please reload this page.
Is there a good reason for the lazy loading behavior, e.g.
if self._acl is None: self._acl = ObjectACL(self)
This doesn't make any requests and just initializes a very lightweight object.
I move to just create these in the constructor.
Is there a good reason for the lazy loading behavior, e.g.
This doesn't make any requests and just initializes a very lightweight object.
I move to just create these in the constructor.