diff --git a/kwant/physics/leads.py b/kwant/physics/leads.py index d6efcad06d37639ae62042f3622dd2e40f289297..e7335a136035beb72a74cf90515536989ed73e18 100644 --- a/kwant/physics/leads.py +++ b/kwant/physics/leads.py @@ -448,12 +448,7 @@ def make_proper_modes(lmbdainv, psi, extract, tol=1e6): # orthogonalized. Moreover for the velocity to have a proper value the # modes should also be normalized. - # Note: Here's a workaround for the fact that the interface - # to qr changed from SciPy 0.8.0 to 0.9.0 - try: - q, r = la.qr(full_psi[:, indx], econ=True, mode='qr') - except TypeError: - q, r = la.qr(full_psi[:, indx], mode='economic') + q, r = la.qr(full_psi[:, indx], mode='economic') # If the eigenvectors were purely real up to this stage, # they will typically become complex after the rotation.