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