From a898d8bacfe1869029719d3536e9a371b99fa39a Mon Sep 17 00:00:00 2001 From: Chris Trevino Date: Fri, 10 May 2024 14:47:25 -0700 Subject: [PATCH] revert pipeline/embed/__init__.py export order --- graspologic/pipeline/embed/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graspologic/pipeline/embed/__init__.py b/graspologic/pipeline/embed/__init__.py index 4b6b00d2d..b9a76c4d5 100644 --- a/graspologic/pipeline/embed/__init__.py +++ b/graspologic/pipeline/embed/__init__.py @@ -1,6 +1,6 @@ # Copyright (c) Microsoft Corporation. # Licensed under the MIT license. - +# ruff: noqa: E402 SVD_SOLVER_TYPES needs to be first """ The embed module of ``graspologic.pipeline.embed`` is intended to provide faster application development support. The functions provided in it reflect common call @@ -8,9 +8,9 @@ by nearest neighbor services and visualization routines. """ +__SVD_SOLVER_TYPES = ["randomized", "full", "truncated"] from .adjacency_spectral_embedding import adjacency_spectral_embedding from .embeddings import Embeddings, EmbeddingsView from .laplacian_spectral_embedding import laplacian_spectral_embedding from .omnibus_embedding import omnibus_embedding_pairwise -__SVD_SOLVER_TYPES = ["randomized", "full", "truncated"]