in src/h3/_h3shape.py [0:0]
def __init__(self, *polys):
self.polys = tuple(polys)
for p in self.polys:
if not isinstance(p, LatLngPoly):
raise ValueError('LatLngMultiPoly requires each input to be an LatLngPoly object, instead got: ' + str(p)) # noqa