Skip to content

Commit 79f590b

Browse files
committed
Remove unused classmethod
1 parent 67a2a70 commit 79f590b

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pymc/distributions/continuous.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2055,10 +2055,6 @@ def _get_alpha_beta(cls, alpha, beta, mu, sigma):
20552055

20562056
return alpha, beta
20572057

2058-
@classmethod
2059-
def _distr_parameters_for_repr(self):
2060-
return ["alpha", "beta"]
2061-
20622058
def logcdf(value, alpha, beta):
20632059
res = at.switch(
20642060
at.lt(value, 0),
@@ -2802,9 +2798,6 @@ def moment(rv, size, mu, beta):
28022798
mean = at.full(size, mean)
28032799
return mean
28042800

2805-
def _distr_parameters_for_repr(self):
2806-
return ["mu", "beta"]
2807-
28082801
def logcdf(value, mu, beta):
28092802
res = -at.exp(-(value - mu) / beta)
28102803

0 commit comments

Comments
 (0)