def __init__()

in metropolis/utils/data_classes.py [0:0]


    def __init__(self, points: np.ndarray):
        assert (
            points.shape[0] == self.nbr_dims()
        ), f"Error: Pointcloud points must have format: {self.nbr_dims()} x n"
        self.points = points