Skip to content

Commit

Permalink
changed params after sigma to kwarg only
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelraczycki committed Mar 6, 2023
1 parent 31c30dc commit 4643a1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc/distributions/continuous.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,10 +650,10 @@ def dist(
cls,
mu: Optional[DIST_PARAMETER_TYPES] = None,
sigma: Optional[DIST_PARAMETER_TYPES] = None,
*,
tau: Optional[DIST_PARAMETER_TYPES] = None,
lower: Optional[DIST_PARAMETER_TYPES] = None,
upper: Optional[DIST_PARAMETER_TYPES] = None,
*args,
**kwargs,
) -> RandomVariable:
tau, sigma = get_tau_sigma(tau=tau, sigma=sigma)
Expand Down

0 comments on commit 4643a1b

Please sign in to comment.