def __repr__()

in src/h3/_h3shape.py [0:0]


    def __repr__(self):
        out = [p.loopcode for p in self.polys]
        out = ', '.join(out)
        out = '<LatLngMultiPoly: {}>'.format(out)
        return out