From c9021649a598c7981aa52605ad694cda844055ff Mon Sep 17 00:00:00 2001 From: Dante Gama Dessavre Date: Mon, 7 Oct 2024 21:56:13 -0500 Subject: [PATCH] FIX final typo fix hopefully --- python/cuml/cuml/random_projection/random_projection.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cuml/cuml/random_projection/random_projection.pyx b/python/cuml/cuml/random_projection/random_projection.pyx index bf1a06f4cb..18c61b606e 100644 --- a/python/cuml/cuml/random_projection/random_projection.pyx +++ b/python/cuml/cuml/random_projection/random_projection.pyx @@ -447,7 +447,7 @@ class GaussianRandomProjection(Base, @classmethod def get_param_names(cls): - return Base.get_param_names(self) + [ + return Base.get_param_names() + [ "n_components", "eps", "random_state"