Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidari committed Sep 6, 2024
1 parent 7d4e7ae commit 1e85505
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyrenew/distributions/censorednormal.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ def __init__(
self.loc, self.scale = promote_shapes(loc, scale)
self.lower_limit = lower_limit
self.upper_limit = upper_limit
self._support = constraints.interval(self.lower_limit, self.upper_limit)
self._support = constraints.interval(
self.lower_limit, self.upper_limit
)
batch_shape = jax.lax.broadcast_shapes(
jnp.shape(loc), jnp.shape(scale)
)
Expand Down

0 comments on commit 1e85505

Please sign in to comment.