diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-02 20:01:40 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-02 20:01:40 +0100 |
commit | 0e243a4cb43ff1da084cf2c82836d8e403ef1c4e (patch) | |
tree | 03e9b23549fa5b1440f087cf25f48c8da2db7364 | |
parent | ef8d0023e90d76c61737a4121bbb4ddd9b557de7 (diff) | |
download | fuzzycat-0e243a4cb43ff1da084cf2c82836d8e403ef1c4e.tar.gz fuzzycat-0e243a4cb43ff1da084cf2c82836d8e403ef1c4e.zip |
fix imports
-rw-r--r-- | fuzzycat/cluster.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fuzzycat/cluster.py b/fuzzycat/cluster.py index e72097a..fbc7712 100644 --- a/fuzzycat/cluster.py +++ b/fuzzycat/cluster.py @@ -3,9 +3,11 @@ Clustering stage. """ import functools -import fuzzy import operator import re +import sys + +import fuzzy __all__ = [ "release_key_title", |