diff --git a/pymc/distributions/continuous.py b/pymc/distributions/continuous.py index 30abbbfc8e..58bca3829f 100644 --- a/pymc/distributions/continuous.py +++ b/pymc/distributions/continuous.py @@ -152,7 +152,7 @@ class BoundedContinuous(Continuous): """Base class for bounded continuous distributions""" # Indices of the arguments that define the lower and upper bounds of the distribution - bound_args_indices: tuple[int, int] | None = None + bound_args_indices: tuple[int | None, int | None] | None = None @_default_transform.register(PositiveContinuous)