diff --git a/GPy/core/gp.py b/GPy/core/gp.py index 7121c539..7835f8b9 100644 --- a/GPy/core/gp.py +++ b/GPy/core/gp.py @@ -114,7 +114,7 @@ class GP(Model): # LVM models from ..core.parameterization.variational import VariationalPosterior if isinstance(self.X, VariationalPosterior): - assert isinstance(X, type(self.X), "The given X must have the same type as the X in the model!") + assert isinstance(X, type(self.X)), "The given X must have the same type as the X in the model!" self.unlink_parameter(self.X) self.X = X self.link_parameters(self.X)