Skip to content

Commit 898c40e

Browse files
committed
Black
1 parent 5281c4a commit 898c40e

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

pymc3/distributions/discrete.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1734,7 +1734,6 @@ class OrderedLogistic:
17341734
plt.hist(posterior["cutpoints"][0], 80, alpha=0.2, color='k');
17351735
plt.hist(posterior["cutpoints"][1], 80, alpha=0.2, color='k');
17361736
"""
1737-
rv_op = categorical
17381737

17391738
def __new__(cls, name, *args, compute_p=True, **kwargs):
17401739
out_rv = _OrderedLogistic(name, *args, **kwargs)
@@ -1846,7 +1845,6 @@ class OrderedProbit:
18461845
plt.hist(posterior["cutpoints"][0], 80, alpha=0.2, color='k');
18471846
plt.hist(posterior["cutpoints"][1], 80, alpha=0.2, color='k');
18481847
"""
1849-
rv_op = categorical
18501848

18511849
def __new__(cls, name, *args, compute_p=True, **kwargs):
18521850
out_rv = _OrderedProbit(name, *args, **kwargs)

pymc3/distributions/multivariate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,6 @@ class OrderedMultinomial:
791791
# Plot the results
792792
arviz.plot_posterior(trace_12_4, var_names=["complete_p"], ref_val=list(true_p));
793793
"""
794-
rv_op = multinomial
795794

796795
def __new__(cls, name, *args, compute_p=True, **kwargs):
797796
out_rv = _OrderedMultinomial(name, *args, **kwargs)

0 commit comments

Comments
 (0)