From 3b966972a45ea2e4c88cb821bbb372d7f8faee2e Mon Sep 17 00:00:00 2001 From: James Myatt Date: Thu, 16 May 2019 16:17:32 +0100 Subject: [PATCH] Bug fix and PEP8 fix --- umap/umap_.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/umap/umap_.py b/umap/umap_.py index 83d56fac..0b5a5669 100644 --- a/umap/umap_.py +++ b/umap/umap_.py @@ -13,9 +13,9 @@ from sklearn.neighbors import KDTree try: - from joblib + import joblib except ImportError: - # sklearn.externals.joblib is deprecated in 0.21 and will be removed in 0.23 + # sklearn.externals.joblib is deprecated in 0.21, will be removed in 0.23 from sklearn.externals import joblib import numpy as np