Skip to content

Commit 5839b8d

Browse files
Removing raise ValueError
1 parent 929a3b5 commit 5839b8d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pymc/printing.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,9 @@ def dispatch_comp_str(var, formatting=formatting, include_params=include_params)
9393
elif "Censored" in rv.owner.op._print_name[0]:
9494
start_idx_para = 2
9595
else:
96-
raise ValueError(
97-
"Latex printing not yet implemented for this SymbolicDistribution\n"
98-
"Please update the str_for_symbolic_dist in pymc/printing.py file."
99-
)
96+
# Latex representation for the SymbolicDistribution has not been implemented.
97+
# Hoping for the best here!
98+
start_idx_para = 2
10099

101100
dist_args = [
102101
dispatch_comp_str(dist_para, formatting=formatting, include_params=include_params)

0 commit comments

Comments
 (0)