In the init method there is the call self.append_indexed_items included in base.py but the code is useless even though it can be ignored, no issues are raised by the case_validate.
defappend_indexed_items(self, *args):
""" :param args: A single/tuple of ObservableObjects """forkeyin ["olo:length", "olo:slot"]:
ifself.get(key) isNone:
self[key] =Noneiflen(args) ==1andnotargs[0]: # True if no objects to append providedpasselse:
iflen(args) andself["olo:slot"] isNone:
self["olo:slot"] =list()
...
In the init method there is the call self.append_indexed_items included in base.py but the code is useless even though it can be ignored, no issues are raised by the case_validate.