Skip to content

Commit 07df8da

Browse files
committed
Fix flake8 style
1 parent 787d03b commit 07df8da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pints/_mcmc/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,8 @@ def __init__(
329329
raise ValueError(
330330
'sigma0 must be either a (d, d) matrix or a (d, ) '
331331
'vector, where d is the number of parameters.')
332-
sigma0 = transformation.convert_covariance_matrix(sigma0, x0[0])
332+
sigma0 = transformation.convert_covariance_matrix(sigma0,
333+
x0[0])
333334

334335
# Store transformation for later detransformation: if using a
335336
# transformation, any parameters logged to the filesystem or printed to

0 commit comments

Comments
 (0)