From 36e75cfc75e33fdc1350c088556b55818c5e21cb Mon Sep 17 00:00:00 2001 From: Frederike Date: Fri, 9 Nov 2018 11:44:17 +0100 Subject: [PATCH] Fixed indentation. --- pylocus/algorithms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylocus/algorithms.py b/pylocus/algorithms.py index 01ae1cb..5cdb63a 100644 --- a/pylocus/algorithms.py +++ b/pylocus/algorithms.py @@ -46,7 +46,7 @@ def execute_method(method, measured_matrix=None, all_points=None, W=None, **kwar xhat, costs = reconstruct_dwmds(measured_matrix, W=W, X0=X0, **kwargs) if method == 'SRLS': n = kwargs.get('n', 1) - z = kwargs.get('z', None) + z = kwargs.get('z', None) rescale = kwargs.get('rescale', False) xhat = reconstruct_srls(measured_matrix, all_points, n=n, W=W, rescale=rescale, z=z)