From: Michael Orlitzky Date: Tue, 1 Nov 2016 17:11:56 +0000 (-0400) Subject: Fix a pylint warning in the matrices module. X-Git-Tag: 0.1.0~96 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=381ee9f23d45d7094c9713c846c6119bb64c0807 Fix a pylint warning in the matrices module. --- diff --git a/dunshire/matrices.py b/dunshire/matrices.py index 2d4bb17..13e8150 100644 --- a/dunshire/matrices.py +++ b/dunshire/matrices.py @@ -435,7 +435,7 @@ def condition_number(mat): """ num_eigs = min(mat.size) - eigs = matrix(0, (num_eigs,1), tc='d') + eigs = matrix(0, (num_eigs, 1), tc='d') gesdd(mat, eigs) if len(eigs) > 0: