Skip to content

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
vene committed Jun 25, 2011
1 parent 620b907 commit 0c51fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scikits/learn/decomposition/dict_learning.py
Expand Up @@ -100,7 +100,7 @@ def fit(self, X, y=None, **params):
X = np.asanyarray(X)
if self.method == 'batch':
U, _, E = sparse_pca(X.T, self.n_atoms, self.alpha,
tol=self.tol, max_iter=self.max_iter,
tol=self.tol, max_iter=self.max_iter,
method=self.coding_method, n_jobs=self.n_jobs,
U_init=self.U_init, V_init=self.V_init,
verbose=self.verbose)
Expand Down

0 comments on commit 0c51fba

Please sign in to comment.