Open jakirkham opened 3 months ago
It looks like cython is both cimported and imported in dist_metrics.pxd (only the former is needed with cython unless pure Python mode is used)
cython
cimport
import
dist_metrics.pxd
https://github.com/scikit-learn-contrib/hdbscan/blob/2e7112d3b8a65ebb94db95c24243d0c79ad8cfa5/hdbscan/dist_metrics.pxd#L6-L7
However looking at the module it doesn't appear the cython namespace is used anywhere. So maybe both of these can be dropped?
It looks like
cython
is bothcimport
ed andimport
ed indist_metrics.pxd
(only the former is needed withcython
unless pure Python mode is used)https://github.com/scikit-learn-contrib/hdbscan/blob/2e7112d3b8a65ebb94db95c24243d0c79ad8cfa5/hdbscan/dist_metrics.pxd#L6-L7
However looking at the module it doesn't appear the
cython
namespace is used anywhere. So maybe both of these can be dropped?