Skip to content

Commit

Permalink
COSMIT do not set unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jnothman authored and dmohns committed Aug 7, 2017
1 parent 8955adf commit 41b2695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sklearn/mixture/gaussian_mixture.py
Expand Up @@ -92,7 +92,7 @@ def _check_precision_matrix(precision, covariance_type):
def _check_precisions_full(precisions, covariance_type):
"""Check the precision matrices are symmetric and positive-definite."""
for k, prec in enumerate(precisions):
prec = _check_precision_matrix(prec, covariance_type)
_check_precision_matrix(prec, covariance_type)


def _check_precisions(precisions, covariance_type, n_components, n_features):
Expand Down

0 comments on commit 41b2695

Please sign in to comment.