Skip to content

Commit

Permalink
Add missing super().__init__()
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzo committed Jan 21, 2021
1 parent 29d61ef commit 08c98b7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions numpyro/contrib/tfp/distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ class BijectorTransform(Transform):
:param ~tensorflow_probability.substrates.jax.bijectors.Bijector bijector: a TensorFlow bijector
"""
def __init__(self, bijector):
super().__init__()
self.bijector = bijector

@property
Expand Down

0 comments on commit 08c98b7

Please sign in to comment.