Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
reubenharry committed Aug 5, 2024
1 parent 9056d9f commit e4a7668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blackjax/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def one_step(state, xs):
if progress_bar:
one_step = progress_bar_scan(num_steps)(one_step)

xs = (jnp.arange(num_steps), keys)
xs = jnp.arange(num_steps), keys
final_state, history = lax.scan(one_step, initial_state, xs)
return final_state, history

Expand Down

0 comments on commit e4a7668

Please sign in to comment.