__init__.py 213 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 from floraconcierge.client.types import Object class Collection(Object, list): def __init__(self, *args, **kwargs): super(Collection, self).__init__(*args, **kwargs) self.extend(self.items)