Skip to content

Commit 1085aa4

Browse files
authored
Typo in _repr_latex_ for Flat distribution
Extra open bracket was breaking it.
1 parent 47c334a commit 1085aa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/distributions/continuous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def logp(self, value):
203203
def _repr_latex_(self, name=None, dist=None):
204204
if dist is None:
205205
dist = self
206-
return r'${} \sim \text{{Flat}()$'
206+
return r'${} \sim \text{Flat}()$'
207207

208208

209209
class HalfFlat(PositiveContinuous):

0 commit comments

Comments
 (0)