Remove unused variables in src.

This commit is contained in:
Aymeric Augustin
2019-12-23 22:28:34 +01:00
parent 81422c4e6d
commit 71f94a8a1c
7 changed files with 7 additions and 16 deletions

View File

@@ -19,7 +19,7 @@ try:
from sklearn.metrics import matthews_corrcoef, f1_score
_has_sklearn = True
except (AttributeError, ImportError) as e:
except (AttributeError, ImportError):
_has_sklearn = False