Skip to content

Commit

Permalink
lint: fixing line-too-long
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasCowie committed Sep 24, 2024
1 parent d6c646a commit 7d473c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/mcmc_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def main():
log_drain=ind_prior_from_truth(true_parameters.log_drain, 0.1),
dgf=(
ind_prior_from_truth(true_parameters.dgf, 0.1)[0],
jnp.diag(jnp.square(ind_prior_from_truth(true_parameters.dgf, 0.1)[1])),
jnp.diag(
jnp.square(ind_prior_from_truth(true_parameters.dgf, 0.1)[1])
),
),
log_km=ind_prior_from_truth(true_parameters.log_km, 0.1),
log_conc_unbalanced=ind_prior_from_truth(
Expand Down

0 comments on commit 7d473c4

Please sign in to comment.