Skip to content

Commit

Permalink
Fixed indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
duembgen committed Nov 9, 2018
1 parent 5c07ece commit 36e75cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylocus/algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 36e75cf

Please sign in to comment.